Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: third_party/WebKit/LayoutTests/plugins/embed-prefers-plugins-for-images.html

Issue 1821103002: Migrate a bunch of LayoutTests from NPAPI to PPAPI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_open-and-close-window-with-plugin
Patch Set: rebase; fix expectations for plugin-initiate-popup-window-expected Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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">
-

Powered by Google App Engine
This is Rietveld 408576698