Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / atrule_longest_match.html
blobf8975eebca158f572452760e33994fd7ffd24ff8
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS atrules - tokenizer must match "@"{ident} longest match</title>
5 <style type="text/css">
6 p.test { display: none }
7 @media all { span.test { display: inline } }
8 @mediaall { span.test { display: none } }
9 p.test { display: block }
10 </style>
11 <script type="text/javascript">
12 if (window.testRunner)
13 testRunner.dumpAsText();
14 </script>
15 </head>
16 <body>
17 <p>Below should be a line saying: PASSED</p>
18 <p class="test"><span class="test">PASSED</span></p>
19 <p>See <a href="http://bugs.webkit.org/show_bug.cgi?id=19965">Bug 19965<a>.</p>
20 </body>
21 </html>
22 </body>
23 </html>