Chromium Code Reviews| Index: LayoutTests/fast/dom/Node/script-tests/initial-values.js |
| diff --git a/LayoutTests/fast/dom/Node/script-tests/initial-values.js b/LayoutTests/fast/dom/Node/script-tests/initial-values.js |
| index 926dedc915dd56bcd5766883d394e19f7331d4b9..f0df47a2bfc58fe949b43297309bebe477730562 100644 |
| --- a/LayoutTests/fast/dom/Node/script-tests/initial-values.js |
| +++ b/LayoutTests/fast/dom/Node/script-tests/initial-values.js |
| @@ -156,9 +156,6 @@ shouldBe("element.prefix", "'html'"); |
| shouldBe("element.nodeValue", "null"); |
| shouldBe("element.attributes.toString()", "'[object NamedNodeMap]'"); |
| -// Not possible to create Notation nodes via the DOM, WebKit doesn't create them from parsing |
| - |
| -shouldThrow("document.createProcessingInstruction('xml-stylesheet', 'type=\"text/xsl\" href=\"missing.xsl\"')"); |
|
jochen (gone - plz use gerrit)
2013/12/05 11:12:09
so the following few lines should also pass if you
philipj_slow
2013/12/05 11:57:26
Done.
|
| var processingInstruction = xmlDoc.createProcessingInstruction('xml-stylesheet', 'type="text/xsl" href="missing.xsl"'); |
| shouldBe("processingInstruction.nodeName", "'xml-stylesheet'"); |
| shouldBe("processingInstruction.localName", "null"); |