tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / beforeSelectorOnCodeElement.html
1 <html
2 <head>
3 <style>
4     @font-face {
5         font-family: '-webkit-monospace';
6         src: local('Courier');
7     }
8
9     /* Match Mac OS X's font fallback behavior on Windows */
10
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;
16     }
17
18     code:before {
19       content: counter(dummy,circle);
20     }
21     code:after {
22       content: counter(dummy,square);
23     }
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>