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

Side by Side Diff: content/test/data/npapi/ensure_scripting_works_in_destroy_iframe.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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="npapi.js"></script>
4 <script>
5 function GetMagicNumber() {
6 return 42;
7 }
8
9 function onSuccess(name, id) {
10 parent.onSuccess(name, id);
11 }
12
13 function onFailure(name, id, status) {
14 parent.onFailure(name, id, status);
15 }
16 </script>
17 </head>
18
19 <body>
20 <div id=PluginDiv>
21 <embed type="application/vnd.npapi-test"
22 src="foo"
23 name="ensure_scripting_works_in_destroy"
24 id="1"
25 mode="np_embed"
26 >
27 </DIV>
28 <script>
29 var height = document.body.offsetHeight;
30 </script>
31
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698