Index: third_party/WebKit/LayoutTests/permissionclient/plugin-permission.html |
diff --git a/third_party/WebKit/LayoutTests/permissionclient/plugin-permission.html b/third_party/WebKit/LayoutTests/permissionclient/plugin-permission.html |
index 54a99ee5552015b5208726b09bc3b4295fe2c06e..e49bf822af990517c99a4bbfc858c00d1f58c4e5 100644 |
--- a/third_party/WebKit/LayoutTests/permissionclient/plugin-permission.html |
+++ b/third_party/WebKit/LayoutTests/permissionclient/plugin-permission.html |
@@ -14,7 +14,7 @@ function log(a) |
function test() |
{ |
var plugin = document.createElement('embed'); |
- plugin.setAttribute("type", "application/x-webkit-test-netscape"); |
+ plugin.setAttribute("type", "application/x-blink-deprecated-test-plugin"); |
plugin.setAttribute("onNew", "loadedFirst()"); |
document.getElementById("plugins").appendChild(plugin); |
} |
@@ -34,7 +34,7 @@ function loadedFirst() |
log("This test requires testRunner.setPluginsAllowed, so it be can't run in a browser."); |
var plugin = document.createElement('embed'); |
- plugin.setAttribute("type", "application/x-webkit-test-netscape"); |
+ plugin.setAttribute("type", "application/x-blink-deprecated-test-plugin"); |
dcheng
2016/03/22 18:03:05
Similar to the sandboxed plugins, I think this is
piman
2016/03/23 05:30:24
As discussed, we can use the "regular" plugin and
|
plugin.setAttribute("onNew", "loadedSecond()"); |
document.getElementById("plugins").appendChild(plugin); |
window.setTimeout(done, 5); |