Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / parser / xhtml-html-comment-in-style-block.xhtml
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>