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

Side by Side Diff: LayoutTests/fast/plugins/plugin-placeholder-inherit.html

Issue 1303233007: Blink Plugins: Remove Shadow DOM plugin placeholder tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <!-- These properties should not propagate into the placeholder. -->
4 <style>
5 body {
6 color: red;
7 text-decoration: underline;
8 text-transform: uppercase;
9 }
10 </style>
11
12 <!-- The message inserted below should be shown with some suitable style. -->
13 <embed type="application/x-fake-plugin"></embed>
14
15 <script>
16 var plugin = document.querySelector("embed");
17 internals.forcePluginPlaceholder(plugin, { message: "This test fails if this tex t is red, underlined, or uppercase." });
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698