Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(668)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/beforeSelectorOnCodeElement.html

Issue 2721613002: Fix matching Roboto Bold for src: local("Roboto Regular") (Closed)
Patch Set: Fix test case for Mac Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/font-face-multiple-ranges-for-unicode-range.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/font-face-multiple-ranges-for-unicode-range.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698