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

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

Issue 669883003: Prevent inherited style from propagating into a plugin placeholder. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 1 month 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 | Annotate | Revision Log
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
« no previous file with comments | « LayoutTests/fast/plugins/plugin-placeholder.css ('k') | LayoutTests/fast/plugins/plugin-placeholder-inherit-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698