Index: third_party/WebKit/LayoutTests/plugins/embed-prefers-plugins-for-images.html |
diff --git a/third_party/WebKit/LayoutTests/plugins/embed-prefers-plugins-for-images.html b/third_party/WebKit/LayoutTests/plugins/embed-prefers-plugins-for-images.html |
deleted file mode 100644 |
index 57b680aa455dd65401b3b58c97307348d395609b..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/plugins/embed-prefers-plugins-for-images.html |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-<script> |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
- } |
- |
- function runTest() |
- { |
- var plugin = document.getElementById("plugin"); |
- |
- // Both QuickTime and TestNetscapePlugIn register for image/png. |
- if (plugin && (plugin.testCallback || plugin.GetQuickTimeVersion)) |
- logSuccess(); |
- |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- } |
- |
- function logSuccess() |
- { |
- document.getElementById("console").innerHTML = "PASS"; |
- } |
-</script> |
-<body onload="runTest()"> |
-<p>Test that WebKit will load a plugin to render an image before rendering it natively.</p> |
-<div id="console">FAIL</div> |
-<embed id="plugin" src="image.png"> |
- |