Index: content/test/data/browser_plugin_embedder_crash.html |
=================================================================== |
--- content/test/data/browser_plugin_embedder_crash.html (revision 157800) |
+++ content/test/data/browser_plugin_embedder_crash.html (working copy) |
@@ -1,17 +0,0 @@ |
-<script type="text/javascript"> |
-function SetSrc(src) { |
- plugin = document.getElementById('plugin'); |
- plugin.src = src; |
-} |
-function SetSize(w, h) { |
- plugin = document.getElementById('plugin'); |
- plugin.width = w; |
- plugin.height = h; |
-} |
-</script> |
- |
-<!-- The plugin size is same as the browser's size --> |
-<object id="plugin" |
- tabindex="0" |
- type="application/new-browser-plugin" |
- style="height: 100%; width: 100%; border: 0px"></object> |