Index: LayoutTests/fast/plugins/plugin-placeholder.html |
diff --git a/LayoutTests/fast/plugins/plugin-placeholder.html b/LayoutTests/fast/plugins/plugin-placeholder.html |
deleted file mode 100644 |
index fd59c04e7818a861d8f83ba2bb0e539a401ef157..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/plugins/plugin-placeholder.html |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<style> |
-applet, embed, object { display: block; margin: 10px; } |
-</style> |
- |
-<!-- These should all appear as 300x150 green blocks. --> |
-<applet code="DoesNotExist.class"></applet> |
-<embed type="application/x-fake-plugin"></embed> |
-<object type="application/x-fake-plugin"></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> |