Index: content/test/data/browser_plugin_embedder.html |
diff --git a/content/test/data/browser_plugin_embedder.html b/content/test/data/browser_plugin_embedder.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..31a78467a65d57d70e50da1e131de0351542d808 |
--- /dev/null |
+++ b/content/test/data/browser_plugin_embedder.html |
@@ -0,0 +1,18 @@ |
+<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> |
+ |
+<object id="plugin" |
+ tabindex="0" |
+ type="application/new-browser-plugin" |
+ width="640" |
+ height="480" |
+ border="0px"></object> |