Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / parser / xhtml-html-comment-in-style-block.xhtml
blob67898c7724e161ec2475ab731f3fa12e42da2ad9
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6 </script>
7 <style type="text/css">
8 .pass {display: block}
9 .fail {display: none}
10 <!--
11 .pass {display: none}
12 .fail {display: block}
13 -->
14 </style>
15 </head>
16 <body>
17 <p>This page tests that style written inside an HTML comment is not applied. See:
18 http://test.w3.org/html/tests/approved/xhtml5/html_style_in_comment.xhtml
19 </p>
20 <span class="pass">PASS</span>
21 <span class="fail">FAIL</span>
22 </body>
23 </html>