| Index: LayoutTests/fast/js/script-tests/instanceof-XMLHttpRequest.js
|
| diff --git a/LayoutTests/fast/js/script-tests/instanceof-XMLHttpRequest.js b/LayoutTests/fast/js/script-tests/instanceof-XMLHttpRequest.js
|
| deleted file mode 100644
|
| index e9aadfe8635b21293f950c07d0083b9f36469b30..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/js/script-tests/instanceof-XMLHttpRequest.js
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -description(
|
| -"instanceof XMLHttpRequest test"
|
| -);
|
| -
|
| -shouldBeTrue("(new Audio()) instanceof Audio");
|
| -shouldBeFalse("(new Array()) instanceof Audio");
|
| -
|
| -shouldBeTrue("(new Image()) instanceof Image");
|
| -shouldBeFalse("(new Array()) instanceof Image");
|
| -
|
| -// MessageChannel is not available yet.
|
| -//shouldBeTrue("(new MessageChannel()) instanceof MessageChannel");
|
| -//shouldBeFalse("(new Array()) instanceof MessageChannel");
|
| -
|
| -shouldBeTrue("(new Option()) instanceof Option");
|
| -shouldBeFalse("(new Array()) instanceof Option");
|
| -
|
| -shouldBeTrue("(new WebKitCSSMatrix()) instanceof WebKitCSSMatrix");
|
| -shouldBeFalse("(new Array()) instanceof WebKitCSSMatrix");
|
| -
|
| -shouldBeTrue("(new Worker('instanceof-operator-dummy-worker.js')) instanceof Worker");
|
| -shouldBeFalse("(new Array()) instanceof Worker");
|
| -
|
| -shouldBeTrue("(new XMLHttpRequest()) instanceof XMLHttpRequest")
|
| -shouldBeFalse("(new Array()) instanceof XMLHttpRequest")
|
| -
|
| -shouldBeTrue("(new XSLTProcessor()) instanceof XSLTProcessor");
|
| -shouldBeFalse("(new Array()) instanceof XSLTProcessor");
|
|
|