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

Unified Diff: LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html

Issue 369893006: Allow HTMLPlugInElement to host UA shadow DOM. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
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
new file mode 100644
index 0000000000000000000000000000000000000000..6f0d18ae1b98c3dcd47aa601448e5de4c998251a
--- /dev/null
+++ b/LayoutTests/fast/plugins/plugin-placeholder-explicit-size.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+
+<style>
+applet, 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>
+<embed type="application/x-fake-plugin" height="100"></embed>
+<object type="application/x-fake-plugin" width="200" height="100"></object>
+
+<script>
+internals.settings.setJavaEnabled(true);
+
+var placeholderHTML =
+ '<style>:host { overflow: hidden }</style>' +
+ '<div style="margin: 0; padding: 0; width: 100%; height: 100%; background-color: green;"></div>';
+Array.prototype.forEach.call(document.querySelectorAll("applet, embed, object"), function(plugin) {
+ internals.forcePluginPlaceholder(plugin, placeholderHTML);
+});
+</script>

Powered by Google App Engine
This is Rietveld 408576698