| OLD | NEW |
| 1 <html | 1 <html |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 @font-face { | 4 @font-face { |
| 5 font-family: '-webkit-monospace'; | 5 font-family: '-webkit-monospace'; |
| 6 src: local('Courier'); | 6 src: local('Courier'), local('Courier New'); |
| 7 } | 7 } |
| 8 | 8 |
| 9 /* Match Mac OS X's font fallback behavior on Windows */ | 9 /* Match Mac OS X's font fallback behavior on Windows */ |
| 10 | 10 |
| 11 @font-face { | 11 @font-face { |
| 12 font-family: '-webkit-monospace'; | 12 font-family: '-webkit-monospace'; |
| 13 src: local('Lucida Grande'); | 13 src: local('Lucida Grande'); |
| 14 /* black square and white bullet */ | 14 /* black square and white bullet */ |
| 15 unicode-range: U+25A0, U+25E6; | 15 unicode-range: U+25A0, U+25E6; |
| 16 } | 16 } |
| 17 | 17 |
| 18 code:before { | 18 code:before { |
| 19 content: counter(dummy,circle); | 19 content: counter(dummy,circle); |
| 20 } | 20 } |
| 21 code:after { | 21 code:after { |
| 22 content: counter(dummy,square); | 22 content: counter(dummy,square); |
| 23 } | 23 } |
| 24 </style> | 24 </style> |
| 25 </head> | 25 </head> |
| 26 <body> | 26 <body> |
| 27 <p> | 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=1
1197">11197</a>. | 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=1
1197">11197</a>. |
| 29 </p> | 29 </p> |
| 30 <code>PASSED</code> | 30 <code>PASSED</code> |
| 31 </body> | 31 </body> |
| 32 </html> | 32 </html> |
| OLD | NEW |