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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/Element/getAttribute-check-case-sensitivity-expected.txt

Issue 1747403002: Make Document.createAttribute lowercase the name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests Created 4 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
OLDNEW
1 This file test the behaviour of getAttribute with regard to case. 1 This file test the behaviour of getAttribute with regard to case.
2 2
3 See Bug 20247: setAttributeNode() does not work when attribute name has a capita l letter in it 3 See Bug 20247: setAttributeNode() does not work when attribute name has a capita l letter in it
4 4
5 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 5 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
6 6
7 7
8 PASS testGetAttributeCaseInsensitive() is "x" 8 PASS testGetAttributeCaseInsensitive() is "x"
9 PASS testGetAttributeNodeMixedCase() is "x" 9 PASS testGetAttributeNodeMixedCase() is "x"
10 PASS testGetAttributeNodeLowerCase() is "x" 10 PASS testGetAttributeNodeLowerCase() is "x"
11 PASS testSetAttributeNodeKeepsRef() is "1" 11 PASS testSetAttributeNodeKeepsRef() is "1"
12 PASS testAttribNodeNamePreservesCase() is "A,A" 12 PASS testAttribNodeNamePreservesCase() is "a,a"
13 PASS testAttribNodeNamePreservesCaseGetNode() is "A,A" 13 PASS testAttribNodeNamePreservesCaseGetNode() is "a,a"
14 PASS testAttribNodeNamePreservesCaseGetNode2() is "B,B" 14 PASS testAttribNodeNamePreservesCaseGetNode2() is "b,b"
15 PASS testAttribNodeNameGetMutate() is "1" 15 PASS testAttribNodeNameGetMutate() is "1"
16 PASS (new XMLSerializer).serializeToString(node) is "<div xmlns=\"http://www.w3. org/1999/xhtml\" myAttrib=\"XXX\"></div>" 16 PASS (new XMLSerializer).serializeToString(node) is "<div xmlns=\"http://www.w3. org/1999/xhtml\" myattrib=\"XXX\"></div>"
17 PASS node.getAttributeNode('myAttrib').name is "myAttrib" 17 PASS node.getAttributeNode('myAttrib').name is "myattrib"
18 PASS node.getAttributeNode('myattrib').name is "myAttrib" 18 PASS node.getAttributeNode('myattrib').name is "myattrib"
19 PASS attrib.name is "myAttrib" 19 PASS attrib.name is "myattrib"
20 PASS successfullyParsed is true 20 PASS successfullyParsed is true
21 21
22 TEST COMPLETE 22 TEST COMPLETE
23 23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698