Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2821)

Unified Diff: content/test/data/browser_plugin_infinite_loop.html

Issue 10868012: Browser Plugin: New Implementation (Browser Side) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master-trial-obrowser
Patch Set: Fix mac build + Address nits from awong@ Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 100644
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"
awong 2012/09/06 00:23:27 nit: Indentation of this is strange. Fix?
lazyboy 2012/09/06 04:33:53 Done.
+ tabindex="0"
+ type="application/new-browser-plugin"
+ width="640"
+ height="480"
+ border="0px"></object>

Powered by Google App Engine
This is Rietveld 408576698