Index: LayoutTests/fast/dom/Node/isSupported.html |
diff --git a/LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data.html b/LayoutTests/fast/dom/Node/isSupported.html |
similarity index 50% |
copy from LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data.html |
copy to LayoutTests/fast/dom/Node/isSupported.html |
index 04eea69e3d6a17f321704d8eb02d20eb56e0ac65..ee8bf89d434c02671e6c55a75e2e807f4846a27f 100644 |
--- a/LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data.html |
+++ b/LayoutTests/fast/dom/Node/isSupported.html |
@@ -5,10 +5,9 @@ |
</head> |
<body> |
<script> |
-['?>', 'foo?>bar'].forEach(function(data) |
-{ |
- shouldThrow("document.createProcessingInstruction('name', '" + data + "')"); |
-}); |
+description("Node.isSupported should not exist"); |
+var node = new DocumentFragment(); |
+shouldBeFalse("'isSupported' in node"); |
</script> |
</body> |
</html> |