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

Side by Side Diff: content/test/data/browser_plugin_embedder_crash.html

Issue 10868012: Browser Plugin: New Implementation (Browser Side) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master-trial-obrowser
Patch Set: Disable BrowserPluginHostTest.NavigateGuest on win, flaking. Created 8 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <script type="text/javascript">
2 function SetSrc(src) {
3 plugin = document.getElementById('plugin');
4 plugin.src = src;
5 }
6 function SetSize(w, h) {
7 plugin = document.getElementById('plugin');
8 plugin.width = w;
9 plugin.height = h;
10 }
11 </script>
12
13 <!-- The plugin size is same as the browser's size -->
14 <object id="plugin"
15 tabindex="0"
16 type="application/new-browser-plugin"
17 style="height: 100%; width: 100%; border: 0px"></object>
OLDNEW
« no previous file with comments | « content/test/data/browser_plugin_embedder.html ('k') | content/test/data/browser_plugin_focus.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698