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

Side by Side Diff: LayoutTests/fast/forms/fieldset/fieldset-name-expected.txt

Issue 70103011: Remove TreatNullAs=NullString for HTMLFieldSetElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update tests Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 This test checks fieldset.name attribute. 1 This test checks fieldset.name attribute.
2 2
3 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 ".
4 4
5 5
6 Read from HTML 6 Read from HTML
7 PASS fs1.name is "a" 7 PASS fs1.name is "a"
8 PASS fs1.getAttribute("name") is "a" 8 PASS fs1.getAttribute("name") is "a"
9 fs1.name="b" 9 fs1.name="b"
10 PASS fs1.name is "b" 10 PASS fs1.name is "b"
11 PASS fs1.getAttribute("name") is "b" 11 PASS fs1.getAttribute("name") is "b"
12 fs1.name=1234 12 fs1.name=1234
13 PASS fs1.name is "1234" 13 PASS fs1.name is "1234"
14 PASS fs1.getAttribute("name") is "1234" 14 PASS fs1.getAttribute("name") is "1234"
15 fs1.name=null 15 fs1.name=null
16 PASS fs1.name is "" 16 PASS fs1.name is "null"
17 PASS fs1.getAttribute("name") is null 17 PASS fs1.getAttribute("name") is "null"
18 PASS fs1.hasAttribute("name") is false 18 PASS fs1.hasAttribute("name") is true
19 fs1.name=undefined 19 fs1.name=undefined
20 PASS fs1.name is "undefined" 20 PASS fs1.name is "undefined"
21 PASS fs1.getAttribute("name") is "undefined" 21 PASS fs1.getAttribute("name") is "undefined"
22 PASS fs1.hasAttribute("name") is true 22 PASS fs1.hasAttribute("name") is true
23 PASS successfullyParsed is true 23 PASS successfullyParsed is true
24 24
25 TEST COMPLETE 25 TEST COMPLETE
26 26
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/fieldset/fieldset-name.html ('k') | Source/core/html/HTMLFieldSetElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698