| Index: LayoutTests/fast/dom/Element/script-tests/getAttribute-check-case-sensitivity.js
|
| diff --git a/LayoutTests/fast/dom/Element/script-tests/getAttribute-check-case-sensitivity.js b/LayoutTests/fast/dom/Element/script-tests/getAttribute-check-case-sensitivity.js
|
| index bc52298fe8990b1e89ff8da8ae011a3561518775..06f6cf7451b68c5c8db8585ba5b078e9c59f5769 100644
|
| --- a/LayoutTests/fast/dom/Element/script-tests/getAttribute-check-case-sensitivity.js
|
| +++ b/LayoutTests/fast/dom/Element/script-tests/getAttribute-check-case-sensitivity.js
|
| @@ -135,7 +135,7 @@ var attrib = document.createAttribute("myAttrib");
|
| attrib.nodeValue = "XXX";
|
| node.setAttributeNode(attrib);
|
|
|
| -shouldBe("(new XMLSerializer).serializeToString(node)", '"<div myAttrib=\\"XXX\\"></div>"');
|
| +shouldBe("(new XMLSerializer).serializeToString(node)", '"<div xmlns=\\"http://www.w3.org/1999/xhtml\\" myAttrib=\\"XXX\\"></div>"');
|
| shouldBe("node.getAttributeNode('myAttrib').name", '"myAttrib"');
|
| shouldBe("node.getAttributeNode('myattrib').name", '"myAttrib"');
|
| shouldBe("attrib.name", '"myAttrib"');
|
|
|