Index: content/test/data/browser_plugin_embedder_crash.html |
diff --git a/content/test/data/browser_plugin_embedder_crash.html b/content/test/data/browser_plugin_embedder_crash.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fd066e51480f245715b5b6510393951ea3f3ebdc |
--- /dev/null |
+++ b/content/test/data/browser_plugin_embedder_crash.html |
@@ -0,0 +1,17 @@ |
+<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> |