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

Side by Side Diff: chrome/test/data/npapi/multiple_instances_sync_calls.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 <head>
3 <script src="npapi.js"></script>
4 <script>
5 function TestCallback() {
6 onSuccess("multiple_instances_sync_calls", 1);
7 }
8 </script>
9 </head>
10 <body>
11 <div id="statusPanel" style="border: 1px solid red; width: 100%">
12 Test running....
13 </div>
14
15 NPObject Proxy Test<p>
16
17 Tests the case that involves two plugin instances with second
18 instance making sync calls to the renderer while the first one
19 is still servicing an incoming sync request
20
21 <DIV ID="plugin">
22 <embed type="application/vnd.npapi-test"
23 src="foo"
24 name="multiple_instances_sync_calls"
25 id="1"
26 width="100"
27 height="100"
28 mode="np_embed"></embed>
29 <embed type="application/vnd.npapi-test"
30 src="foo"
31 name="multiple_instances_sync_calls"
32 id="2"
33 width="100"
34 height="100"
35 mode="np_embed"></embed>
36 </DIV>
37 </body>
38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698