summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/parser/html-html-comment-in-style-block.html
blob: 42769d7fbf4850b9e0742592c78c47459e51ad51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
</script>
<style type="text/css">
.pass {display: none}
.fail {display: block}
<!--
.pass {display: block}
.fail {display: none}
-->
</style>
</head>
<body>
<p>This page tests that style written inside an HTML comment is applied.
</p>
<span class="pass">PASS</span>
<span class="fail">FAIL</span>
</body>
</html>