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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/form-attribute-expected.txt

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 4 years 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 CONSOLE WARNING: line 16: The <keygen> element is deprecated and will be removed in M57, around March 2017. See https://www.chromestatus.com/features/5716060992 962560 for more details.
2 This test checks the form attribute of the form-associated elements. 1 This test checks the form attribute of the form-associated elements.
3 2
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 4
6 5
7 - Checks the existence of the form attribute for each form-associated elements. 6 - Checks the existence of the form attribute for each form-associated elements.
8 PASS document.getElementsByTagName("button")[0].form is owner 7 PASS document.getElementsByTagName("button")[0].form is owner
9 PASS document.getElementsByTagName("fieldset")[0].form is owner 8 PASS document.getElementsByTagName("fieldset")[0].form is owner
10 PASS document.getElementsByTagName("input")[0].form is owner 9 PASS document.getElementsByTagName("input")[0].form is owner
11 PASS document.getElementsByTagName("keygen")[0].form is owner
12 PASS document.getElementsByTagName("label")[0].form is null 10 PASS document.getElementsByTagName("label")[0].form is null
13 PASS document.getElementsByTagName("object")[0].form is owner 11 PASS document.getElementsByTagName("object")[0].form is owner
14 PASS document.getElementsByTagName("output")[0].form is owner 12 PASS document.getElementsByTagName("output")[0].form is owner
15 PASS document.getElementsByTagName("select")[0].form is owner 13 PASS document.getElementsByTagName("select")[0].form is owner
16 PASS document.getElementsByTagName("textarea")[0].form is owner 14 PASS document.getElementsByTagName("textarea")[0].form is owner
17 15
18 - Ensures that the form attribute points the form owner even if the element is w ithin another form element. 16 - Ensures that the form attribute points the form owner even if the element is w ithin another form element.
19 PASS inputElement.form is owner 17 PASS inputElement.form is owner
20 PASS labelElement.form is owner 18 PASS labelElement.form is owner
21 19
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 PASS option2.form is null 64 PASS option2.form is null
67 PASS option3.form is owner 65 PASS option3.form is owner
68 66
69 - Checks if updating form[id] correctly works 67 - Checks if updating form[id] correctly works
70 PASS control.form is form1 68 PASS control.form is form1
71 PASS form1.setAttribute("id", "b"); control.form is form2 69 PASS form1.setAttribute("id", "b"); control.form is form2
72 PASS successfullyParsed is true 70 PASS successfullyParsed is true
73 71
74 TEST COMPLETE 72 TEST COMPLETE
75 73
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698