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

Side by Side Diff: chrome/test/data/load_all_blocked_plugins.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 | « chrome/test/BUILD.gn ('k') | chrome/test/data/load_npapi_plugin.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 <head>
3 <script>
4 var count = 0;
5 function PluginCreated() {
6 count++;
7 document.title = count.toString();
8 }
9
10 var id = 1;
11 function inject() {
12 var child = document.createElement("div");
13 child.innerHTML = '<embed type="application/vnd.npapi-test" src="foo" '+
14 'name="invoke_js_function_on_create" ' +
15 'id="' + id + '" mode="np_embed">';
16 document.getElementById("content").appendChild(child);
17 id++;
18 }
19 </script>
20 </head>
21 <body onload="inject();">
22 <div id="content"></div>
23 </body>
24 </html>
OLDNEW
« no previous file with comments | « chrome/test/BUILD.gn ('k') | chrome/test/data/load_npapi_plugin.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698