Chromium Code Reviews| Index: content/test/data/browser_plugin_infinite_loop.html |
| diff --git a/content/test/data/browser_plugin_infinite_loop.html b/content/test/data/browser_plugin_infinite_loop.html |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..6db6a41983369c2b8bf52da686ed944b2f53dff0 |
| --- /dev/null |
| +++ b/content/test/data/browser_plugin_infinite_loop.html |
| @@ -0,0 +1,13 @@ |
| +<script type="text/javascript"> |
| +function SetSrc(src) { |
| + plugin = document.getElementById('plugin'); |
| + plugin.src = src; |
| +} |
| +</script> |
| + |
| + <object id="plugin" |
| + tabindex="0" |
| + type="application/new-browser-plugin" |
| + width="640" |
| + height="480" |
| + border="0px"></object> |