Index: LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html |
diff --git a/LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html b/LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html |
deleted file mode 100644 |
index 465ce24a1375dbe92cf48327974a8f12f365e728..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<style> |
-applet, embed, object { display: block; margin: 10px; } |
-</style> |
- |
-<!-- These should appear as green blocks of various sizes (200x150, 300x100, 200x100). --> |
-<applet code="DoesNotExist.class" width="200"></applet> |
-<embed type="application/x-fake-plugin" height="100"></embed> |
-<object type="application/x-fake-plugin" width="200" height="100"></object> |
- |
-<template id="placeholder-template"> |
- <style> |
- :host { overflow: hidden } |
- div { margin: 0; padding: 0; width: 100%; height: 100%; background-color: green; } |
- </style> |
- <div></div> |
-</template> |
- |
-<script> |
-internals.settings.setJavaEnabled(true); |
- |
-var templateContent = document.getElementById('placeholder-template').content; |
-Array.prototype.forEach.call(document.querySelectorAll("applet, embed, object"), function(plugin) { |
- internals.forcePluginPlaceholder(plugin, templateContent); |
-}); |
-</script> |