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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/form-collection-radio-node-list-expected.txt

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 3 years, 12 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 CONSOLE WARNING: The <keygen> element is deprecated and will be removed in M57, around March 2017. See https://www.chromestatus.com/features/5716060992962560 fo r more details.
2 CONSOLE WARNING: line 1: The specified value "inputRadioValue" does not conform to the required format, "yyyy-MM-dd". 1 CONSOLE WARNING: line 1: The specified value "inputRadioValue" does not conform to the required format, "yyyy-MM-dd".
3 This test is for RadioNodeList specified at http://www.whatwg.org/specs/web-apps /current-work/multipage/common-dom-interfaces.html#radionodelist 2 This test is for RadioNodeList specified at http://www.whatwg.org/specs/web-apps /current-work/multipage/common-dom-interfaces.html#radionodelist
4 3
5 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
6 5
7 6
8 7
9 PASS owner.elements.length is 23 8 PASS owner.elements.length is 22
10 PASS radioNodeList.length is 4 9 PASS radioNodeList.length is 4
11 PASS radioNodeList[0].value is 'searching' 10 PASS radioNodeList[0].value is 'searching'
12 PASS radioNodeList[1].value is '123' 11 PASS radioNodeList[1].value is '123'
13 PASS radioNodeList[2].value is 'inputRadioValue' 12 PASS radioNodeList[2].value is 'inputRadioValue'
14 PASS radioNodeList[3].value is 'buttonValue' 13 PASS radioNodeList[3].value is 'buttonValue'
15 14
16 Changing the input value to check RadioNodeList is live view of FormCollection 15 Changing the input value to check RadioNodeList is live view of FormCollection
17 PASS radioNodeList[1].value is '456' 16 PASS radioNodeList[1].value is '456'
18 17
19 Checking value IDL attribute on the RadioNodeList 18 Checking value IDL attribute on the RadioNodeList
20 PASS radioNodeList.value is "" 19 PASS radioNodeList.value is ""
21 PASS radioNodeList.value = "inputRadioValue"; radioNodeList[2].checked is true 20 PASS radioNodeList.value = "inputRadioValue"; radioNodeList[2].checked is true
22 PASS Object.prototype.toString.call(radioNodeList[2]) is '[object HTMLInputEleme nt]' 21 PASS Object.prototype.toString.call(radioNodeList[2]) is '[object HTMLInputEleme nt]'
23 PASS radioNodeList[2].type is 'radio' 22 PASS radioNodeList[2].type is 'radio'
24 PASS radioNodeList.value is "" 23 PASS radioNodeList.value is ""
25 PASS radioNodeList[2].checked = true; radioNodeList.value is 'inputRadioValue' 24 PASS radioNodeList[2].checked = true; radioNodeList.value is 'inputRadioValue'
26 25
27 Check RadioNodeList is updated after adding a new element 26 Check RadioNodeList is updated after adding a new element
28 PASS owner.appendChild(newElement); radioNodeList.length is 5 27 PASS owner.appendChild(newElement); radioNodeList.length is 5
29 PASS radioNodeList[4].value is 'new element' 28 PASS radioNodeList[4].value is 'new element'
30 29
31 Check RadioNodeList is updated after remove an element 30 Check RadioNodeList is updated after remove an element
32 PASS owner.removeChild(newElement); radioNodeList.length is 4 31 PASS owner.removeChild(newElement); radioNodeList.length is 4
33 PASS radioNodeList[3].value is 'buttonValue' 32 PASS radioNodeList[3].value is 'buttonValue'
34 33
35 Check RadioNodeList is updated after adding a new element 34 Check RadioNodeList is updated after adding a new element
36 PASS container.appendChild(nonSubtreeElement); radioNodeList.length is 5 35 PASS container.appendChild(nonSubtreeElement); radioNodeList.length is 5
37 PASS owner.elements.length is 24 36 PASS owner.elements.length is 23
38 PASS radioNodeList[4].value is 'non subtree element' 37 PASS radioNodeList[4].value is 'non subtree element'
39 38
40 Check RadioNodeList is updated after change in id, type and checked state of an element 39 Check RadioNodeList is updated after change in id, type and checked state of an element
41 PASS radioNodeList.length is 5 40 PASS radioNodeList.length is 5
42 After changing the id 41 After changing the id
43 PASS radioNodeList.length is 4 42 PASS radioNodeList.length is 4
44 PASS elementsList[13].checked = false; radioNodeList.value is "" 43 PASS elementsList[13].checked = false; radioNodeList.value is ""
45 PASS elementsList[13].checked = true; radioNodeList.value is 'inputRadioValue' 44 PASS elementsList[13].checked = true; radioNodeList.value is 'inputRadioValue'
46 PASS elementsList[13].type = "date"; radioNodeList.value is '' 45 PASS elementsList[13].type = "date"; radioNodeList.value is ''
47 46
48 Check second RadioNodeList is also created properly 47 Check second RadioNodeList is also created properly
49 PASS radioNodeList2.length is 3 48 PASS radioNodeList2.length is 3
50 PASS radioNodeList2[0].type is 'text' 49 PASS radioNodeList2[0].type is 'text'
51 PASS radioNodeList2[1].type is 'email' 50 PASS radioNodeList2[1].type is 'email'
52 PASS radioNodeList2[2].type is 'reset' 51 PASS radioNodeList2[2].type is 'reset'
53 After changing the id 52 After changing the id
54 PASS radioNodeList2.length is 2 53 PASS radioNodeList2.length is 2
55 54
56 Check that object element also reflects in RadioNodeList. 55 Check that object element also reflects in RadioNodeList.
57 PASS radioNodeList.length is 5 56 PASS radioNodeList.length is 5
58 57
59 Check that object element does not reflect in RadioNodeList if its owner form is not present. 58 Check that object element does not reflect in RadioNodeList if its owner form is not present.
60 PASS container.appendChild(nonSubtreeObjectElement); radioNodeList.length is 5 59 PASS container.appendChild(nonSubtreeObjectElement); radioNodeList.length is 5
61 PASS successfullyParsed is true 60 PASS successfullyParsed is true
62 61
63 TEST COMPLETE 62 TEST COMPLETE
64 63
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698