Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-file-vs-blob.html |
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-file-vs-blob.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-file-vs-blob.html |
deleted file mode 100644 |
index 66e448d7a16e44fa1050f6a0823c002d048ca5e1..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-file-vs-blob.html |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-<script src = "../../resources/js-test.js"></script> |
-<script type = "text/javascript"> |
-if (window.testRunner) |
-{ |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
-} |
- |
-description("Test if toBlob creates a Blob-type object."); |
- |
-var resultImageObject = null; |
-canvas = document.createElement('canvas'); |
-canvas.toBlob(function(b) { |
- resultImageObject = b; |
- shouldBeFalse('resultImageObject instanceof File'); |
- shouldBeTrue('resultImageObject instanceof Blob'); |
- if (window.testRunner) |
- testRunner.notifyDone(); |
-}); |
-</Script> |