Backed out 5 changesets (bug 1556364) for causing web-platform test failures. CLOSED TREE

Backed out changeset dabffbe71a31 (bug 1556364)
Backed out changeset 76fc30f27c39 (bug 1556364)
Backed out changeset f6f7f949551f (bug 1556364)
Backed out changeset c77ef41d43d4 (bug 1556364)
Backed out changeset 2c8c74e99e47 (bug 1556364)
This commit is contained in:
Marian-Vasile Laza
2021-11-26 05:01:08 +02:00
parent ae522ae8d1
commit 1e7f538843
25 changed files with 111 additions and 304 deletions

View File

@@ -928,7 +928,7 @@ bool HTMLTextAreaElement::IsValueEmpty() const {
}
void HTMLTextAreaElement::SetCustomValidity(const nsAString& aError) {
ConstraintValidation::SetCustomValidity(aError);
nsIConstraintValidation::SetCustomValidity(aError);
UpdateState(true);
}
@@ -1039,8 +1039,8 @@ nsresult HTMLTextAreaElement::GetValidationMessage(
aValidationMessage = message;
} break;
default:
rv =
ConstraintValidation::GetValidationMessage(aValidationMessage, aType);
rv = nsIConstraintValidation::GetValidationMessage(aValidationMessage,
aType);
}
return rv;