Apply HSTS to WebSocket connections.
[chromium-blink-merge.git] / chrome / test / data / load_all_blocked_plugins.html
blob8ae05db69cb81b0d44bf7c76016d92e9de761db1
1 <html>
2 <head>
3 <script>
4 var count = 0;
5 function PluginCreated() {
6 count++;
7 document.title = count.toString();
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++;
19 </script>
20 </head>
21 <body onload="inject();">
22 <div id="content"></div>
23 </body>
24 </html>