Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / beforeSelectorOnCodeElement.html
blob6d6850447d9e264ef87de56dbdfb1dea89a422a1
1 <html
2 <head>
3 <style>
4 @font-face {
5 font-family: '-webkit-monospace';
6 src: local('Courier');
9 /* Match Mac OS X's font fallback behavior on Windows */
11 @font-face {
12 font-family: '-webkit-monospace';
13 src: local('Lucida Grande');
14 /* black square and white bullet */
15 unicode-range: U+25A0, U+25E6;
18 code:before {
19 content: counter(dummy,circle);
21 code:after {
22 content: counter(dummy,square);
24 </style>
25 </head>
26 <body>
27 <p>
28 The word "PASSED" should be shown below with a cirlce before and a square after. This is a test for WebKit bug <a href="http://bugs.webkit.org/show_bug.cgi?id=11197">11197</a>.
29 </p>
30 <code>PASSED</code>
31 </body>
32 </html>