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

Side by Side Diff: content/test/data/npapi/alert_in_window_message.html

Issue 1182303010: Delete the NPAPI plugin browsertests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years, 6 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
« no previous file with comments | « content/test/BUILD.gn ('k') | content/test/data/npapi/arguments.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2
3 <head>
4 <script src="npapi.js"></script>
5 </head>
6
7 <body>
8 <div id="statusPanel" style="border: 1px solid red; width: 100%">
9 Test running....
10 </div>
11
12
13 Alert in Window message<p>
14
15 Tests that there's no deadlock when a plugin creates an alert in response to a s ynchronous Windows message from the browser process.
16
17 <DIV ID="PluginDiv">
18 <embed type="application/vnd.npapi-test"
19 src="foo"
20 name="alert_in_window_message"
21 id="1"
22 mode="np_embed"
23 >
24 </DIV>
25
26 <DIV id="PluginDiv2"></DIV>
27
28 <script>
29
30 function CallAlert() {
31 alert('testalert');
32 return;
33 }
34 </script>
35
36 </body>
37 </html>
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | content/test/data/npapi/arguments.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698