| Index: LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html
|
| diff --git a/LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html b/LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html
|
| index 465ce24a1375dbe92cf48327974a8f12f365e728..9536be61328a45223d7efc7471a56e35266c0d49 100644
|
| --- a/LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html
|
| +++ b/LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html
|
| @@ -1,11 +1,10 @@
|
| <!DOCTYPE html>
|
|
|
| <style>
|
| -applet, embed, object { display: block; margin: 10px; }
|
| +embed, object { display: block; margin: 10px; }
|
| </style>
|
|
|
| -<!-- These should appear as green blocks of various sizes (200x150, 300x100, 200x100). -->
|
| -<applet code="DoesNotExist.class" width="200"></applet>
|
| +<!-- These should appear as green blocks of various sizes (300x100, 200x100). -->
|
| <embed type="application/x-fake-plugin" height="100"></embed>
|
| <object type="application/x-fake-plugin" width="200" height="100"></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>
|
|
|