Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: LayoutTests/fast/forms/form-pseudo-valid-style-expected.txt

Issue 703473003: Fix bug where form/fieldset :valid/:invalid won't be recalculated upon control's willValidate change (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update a css layout test now that number of SubtreeStyleChange went down Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fast/forms/form-pseudo-valid-style.html ('k') | Source/core/html/HTMLFormControlElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/forms/form-pseudo-valid-style-expected.txt
diff --git a/LayoutTests/fast/forms/form-pseudo-valid-style-expected.txt b/LayoutTests/fast/forms/form-pseudo-valid-style-expected.txt
index 69f791a535dc5b4e0581d4a54630291cb209c8bf..8d20ee73ee108ddaf5e87a52893351e9263c6ac2 100644
--- a/LayoutTests/fast/forms/form-pseudo-valid-style-expected.txt
+++ b/LayoutTests/fast/forms/form-pseudo-valid-style-expected.txt
@@ -3,7 +3,7 @@ Check if :valid/:invalid CSS pseudo selectors are lively applied for forms
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-Removing and adding required text inputs and modifying ther value by a DOM tree mutation:
+Removing and adding required text inputs and modifying their value by a DOM tree mutation:
PASS backgroundOf(form1) is invalidColor
PASS backgroundOf(sub1) is subInvalidColor
PASS form1.removeChild(input1); backgroundOf(form1) is validColor
@@ -15,6 +15,22 @@ PASS backgroundOf(sub1) is subValidColor
PASS input2.setAttribute("value", ""); backgroundOf(form1) is invalidColor
PASS backgroundOf(sub1) is subInvalidColor
+Disabling and marking inputs readonly by a DOM tree mutation:
+PASS backgroundOf(form1) is invalidColor
+PASS backgroundOf(sub1) is subInvalidColor
+PASS input1.disabled=1; backgroundOf(form1) is validColor
+PASS backgroundOf(sub1) is subValidColor
+PASS input1.disabled=0; backgroundOf(form1) is invalidColor
+PASS backgroundOf(sub1) is subInvalidColor
+PASS input1.setAttribute("readonly", "1"); backgroundOf(form1) is validColor
+PASS backgroundOf(sub1) is subValidColor
+
+Move element under datalist by a DOM tree mutation:
+PASS backgroundOf(form1) is invalidColor
+PASS parent.removeChild(input1); backgroundOf(form1) is validColor
+PASS dl1.appendChild(input1); backgroundOf(form1) is validColor
+PASS parent.appendChild(input1); backgroundOf(form1) is invalidColor
+
Adding a required text input that is not a direct child of the form:
PASS backgroundOf(form1) is validColor
PASS div1.appendChild(input1); backgroundOf(form1) is invalidColor
« no previous file with comments | « LayoutTests/fast/forms/form-pseudo-valid-style.html ('k') | Source/core/html/HTMLFormControlElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698