Index: LayoutTests/fast/plugins/plugin-placeholder.html |
diff --git a/LayoutTests/fast/plugins/plugin-placeholder.html b/LayoutTests/fast/plugins/plugin-placeholder.html |
index fd59c04e7818a861d8f83ba2bb0e539a401ef157..54fbeea56fbcf2f9b1f28c4f3cda573e708905ac 100644 |
--- a/LayoutTests/fast/plugins/plugin-placeholder.html |
+++ b/LayoutTests/fast/plugins/plugin-placeholder.html |
@@ -1,11 +1,10 @@ |
<!DOCTYPE html> |
<style> |
-applet, embed, object { display: block; margin: 10px; } |
+embed, object { display: block; margin: 10px; } |
</style> |
<!-- These should all appear as 300x150 green blocks. --> |
-<applet code="DoesNotExist.class"></applet> |
<embed type="application/x-fake-plugin"></embed> |
<object type="application/x-fake-plugin"></object> |
@@ -21,7 +20,7 @@ applet, embed, object { display: block; margin: 10px; } |
internals.settings.setJavaEnabled(true); |
var templateContent = document.getElementById('placeholder-template').content; |
-Array.prototype.forEach.call(document.querySelectorAll("applet, embed, object"), function(plugin) { |
+Array.prototype.forEach.call(document.querySelectorAll("embed, object"), function(plugin) { |
internals.forcePluginPlaceholder(plugin, templateContent); |
}); |
</script> |