Index: content/test/data/browser_plugin_focus.html |
diff --git a/content/test/data/browser_plugin_focus.html b/content/test/data/browser_plugin_focus.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..280de3c6df3fec44bf0001ea30ece08112153096 |
--- /dev/null |
+++ b/content/test/data/browser_plugin_focus.html |
@@ -0,0 +1,21 @@ |
+<html> |
+<head> |
+<script type="text/javascript"> |
+ function SetSrc(src) { |
+ plugin = document.getElementById('plugin'); |
+ plugin.src = src; |
+ } |
+</script> |
+</head> |
+ |
+<body> |
+ <button id="before" tabindex="0">Before</button> |
+ <object id="plugin" |
+ tabindex="0" |
+ type="application/new-browser-plugin" |
+ width="640" |
+ height="480" |
+ border="0px"></object> |
+ <button id="after" tabindex="0">After</button> |
+</body> |
+</html> |