Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / attribute-namespaces-get-set-expected.txt
blob963a708af32d4420fb38abb603e9d1779de3d620
1 PASS: docElem.getAttribute('foo:attr') should be test and is.
2 PASS: docElem.getAttribute('attr') should be test2 and is.
3 PASS: docElem.getAttribute('bar:attr') should be null and is.
4 PASS: docElem.hasAttribute('foo:attr') should be true and is.
5 PASS: docElem.hasAttribute('attr') should be true and is.
6 PASS: docElem.hasAttribute('bar:attr') should be false and is.
7 PASS: docElem.getAttributeNode('foo:attr').value should be test and is.
8 PASS: docElem.getAttributeNode('bar:attr') should be null and is.
9 PASS: docElem.attributes.length should be 3 and is.
10 PASS: docElem.attributes.length should be 3 and is.
11 PASS: docElem.getAttribute('foo:attr') should be new and is.
12 PASS: docElem.attributes.length should be 4 and is.
13 PASS: docElem.getAttribute('bar:attr') should be new2 and is.
14 PASS: docElem.getAttributeNode('bar:attr').prefix should be null and is.
15 PASS: docElem.getAttributeNode('bar:attr').localName should be bar:attr and is.
16 PASS: docElem.getAttribute('foo:attr') should be null and is.
17 PASS: docElem.attributes.length should be 3 and is.
18 PASS: docElem.getAttribute('bar:attr') should be null and is.
19 PASS: docElem.attributes.length should be 2 and is.
20 PASS: docElem.getAttribute('attr') should be null and is.
21 PASS: docElem.attributes.length should be 1 and is.
22 PASS: attributes.getNamedItem('foo:attr').value should be test and is.
23 PASS: attributes.getNamedItem('attr').value should be test2 and is.
24 PASS: attributes.getNamedItem('bar:attr') should be null and is.
25 PASS: attributes.length should be 3 and is.
26 PASS: attributes.getNamedItem('foo:attr') should be null and is.
27 PASS: attributes.length should be 2 and is.
28 PASS: attributes.getNamedItem('attr') should be null and is.
29 PASS: attributes.length should be 1 and is.