| Index: LayoutTests/fast/dom/DOMURL/check-instanceof-domurl-functions.html
|
| diff --git a/LayoutTests/fast/dom/DOMURL/check-instanceof-domurl-functions.html b/LayoutTests/fast/dom/DOMURL/check-instanceof-domurl-functions.html
|
| deleted file mode 100644
|
| index abcf4041f341c8c43385f708ed6422e521d6bceb..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/DOMURL/check-instanceof-domurl-functions.html
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -<!DOCTYPE HTML>
|
| -<html>
|
| -<head>
|
| -<script src="../../js/resources/js-test-pre.js"></script>
|
| -</head>
|
| -<body>
|
| -<script>
|
| -description("Test instanceof functions and properties of URL and webkitURL.");
|
| -
|
| -var url = new URL;
|
| -
|
| -shouldBeTrue("'createObjectURL' in URL");
|
| -shouldBeTrue("'revokeObjectURL' in URL");
|
| -
|
| -shouldBeUndefined("url.createObjectURL");
|
| -shouldBeUndefined("url.revokeObjectURL");
|
| -
|
| -shouldBeDefined("window.URL.createObjectURL");
|
| -shouldBeDefined("window.URL.revokeObjectURL");
|
| -
|
| -// Following tests remain valid until we actually deprecate webkitURL.
|
| -shouldBeTrue("'createObjectURL' in webkitURL");
|
| -shouldBeTrue("'revokeObjectURL' in webkitURL");
|
| -shouldBeDefined("window.webkitURL.createObjectURL");
|
| -shouldBeDefined("window.webkitURL.revokeObjectURL");
|
| -
|
| -</script>
|
| -<script src="../../js/resources/js-test-post.js"></script>
|
| -</body>
|
| -</html>
|
|
|