OLD | NEW |
---|---|
(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> | |
OLD | NEW |