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

Side by Side Diff: LayoutTests/fast/css/font-face-unicode-range.html

Issue 323293002: Fix fast/css tests for Win7/DirectWrite by explicitly setting height (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 <head> 1 <head>
2 <style> 2 <style>
3 div { border: 1px solid; padding: 0 8px; margin: 8px 0; } 3 div { border: 1px solid; padding: 0 8px; margin: 8px 0; }
4 span.ahem { font-family: 'Ahem'; } 4 span.ahem { font-family: 'Ahem'; }
5 span.courier { font-family: 'Courier', 'Courier New'; } 5 span.courier { font-family: 'Courier', 'Courier New'; }
6 6
7 @font-face { 7 @font-face {
8 font-family: 'test1'; 8 font-family: 'test1';
9 src: local('Times'); 9 src: local('Times');
10 } 10 }
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 @font-face { 67 @font-face {
68 font-family: 'test6'; 68 font-family: 'test6';
69 src: local('Courier'), local('Courier New'); 69 src: local('Courier'), local('Courier New');
70 } 70 }
71 @font-face { 71 @font-face {
72 font-family: 'test6'; 72 font-family: 'test6';
73 src: url('../../resources/Ahem.ttf'); 73 src: url('../../resources/Ahem.ttf');
74 unicode-range: U+0027; /* missing glyph */ 74 unicode-range: U+0027; /* missing glyph */
75 } 75 }
76
77 p {
78 height: 30px;
79 }
76 </style> 80 </style>
77 </head> 81 </head>
78 <body onload="finished()"> 82 <body onload="finished()">
79 <p> 83 <p>
80 Each box should contain two identical lines 84 Each box should contain two identical lines
81 </p> 85 </p>
82 86
83 <div> 87 <div>
84 <p style="font-family: 'test1';"> 88 <p style="font-family: 'test1';">
85 ABCDEFGHIJKLMNOPQRSTUVWXYZ 89 ABCDEFGHIJKLMNOPQRSTUVWXYZ
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 if (window.testRunner) 143 if (window.testRunner)
140 testRunner.notifyDone(); 144 testRunner.notifyDone();
141 } 145 }
142 146
143 document.body.offsetTop; 147 document.body.offsetTop;
144 148
145 if (window.testRunner) 149 if (window.testRunner)
146 testRunner.waitUntilDone(); 150 testRunner.waitUntilDone();
147 </script> 151 </script>
148 </body> 152 </body>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/css/font-face-unicode-range-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698