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

Side by Side Diff: chrome/test/data/npapi/self_delete_plugin_stream.html

Issue 10806056: Move plugin_browsertests.cc from browser_tests to content_browsertests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync to mac+win fixes Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2
3 <head>
4 <script src="npapi.js"></script>
5
6 <script>
7 function DeletePluginWithinScript() {
8 var plugin_div = document.getElementById("PluginDiv");
9 plugin_div.innerHTML = "Object Deleted";
10 onSuccess("self_delete_plugin_stream", 1);
11 }
12 </script>
13 </head>
14
15 <body>
16 <div id="statusPanel" style="border: 1px solid red; width: 100%">
17 Test running....
18 </div>
19
20
21 <DIV ID=PluginDiv>
22 <embed type="application/vnd.npapi-test"
23 src="foo"
24 name="self_delete_plugin_stream"
25 id="1"
26 mode="np_embed"
27 >
28 </DIV>
29 <script>
30 var height = document.body.offsetHeight;
31 </script>
32
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698