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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/fieldset/validation-in-fieldset-expected.txt

Issue 2204373002: Revert "Add grid/flex layout support for <fieldset>" and "Auto-rebaseline for r409303" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months 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 unified diff | Download patch
OLDNEW
1 A form control in initially disabled fieldset: 1 A form control in initially disabled fieldset:
2 PASS control1.willValidate is false 2 PASS control1.willValidate is false
3 Then, enables the fieldset: 3 Then, enables the fieldset:
4 PASS document.getElementById("f1").disabled = false; control1.willValidate is tr ue 4 PASS document.getElementById("f1").disabled = false; control1.willValidate is tr ue
5 A form control in initially enabled fieldset: 5 A form control in initially enabled fieldset:
6 PASS control2.willValidate is true 6 PASS control2.willValidate is true
7 Then, disables fieldset: 7 Then, disables fieldset:
8 PASS fieldset2.disabled = true; control2.willValidate is false 8 PASS fieldset2.disabled = true; control2.willValidate is false
9 Detach the form control from the fieldset: 9 Detach the form control from the fieldset:
10 PASS fieldset2.removeChild(control2); control2.willValidate is true 10 PASS fieldset2.removeChild(control2); control2.willValidate is true
11 PASS successfullyParsed is true 11 PASS successfullyParsed is true
12 12
13 TEST COMPLETE 13 TEST COMPLETE
14 PASS successfullyParsed is true 14 PASS successfullyParsed is true
15 15
16 TEST COMPLETE 16 TEST COMPLETE
17 17
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698