blob: 5cd92b10b5499f1e5c3027e6b5f45a6bc3506a23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<style>
div { color: red }
</style>
<style>
@media;
#t1 { color: green; }
</style>
<style>
@media{}
#t2 { color: green; }
</style>
<p>Test that CSS parser stops parsing @media rule after a semicolon or a block.</p>
<div id=t1>Tests @media;. This text should be green.</div>
<div id=t2>Tests @media{}. This text should be green.</div>
|