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

Side by Side Diff: LayoutTests/fast/sub-pixel/shadows-hidpi.html

Issue 1204023002: Deflake tests using ahem font with @font-face. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline and fix an svg test Created 5 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script> 2 <script>
3 function startTest() { 3 function startTest() {
4 if (window.testRunner) { 4 if (window.testRunner) {
5 testRunner.waitUntilDone(); 5 testRunner.waitUntilDone();
6 testRunner.setBackingScaleFactor(2, finishTest); 6 testRunner.setBackingScaleFactor(2, finishTest);
7 } 7 }
8 } 8 }
9 9
10 function finishTest() { 10 function finishTest() {
(...skipping 14 matching lines...) Expand all
25 border: 1px black solid; 25 border: 1px black solid;
26 display: inline-block; 26 display: inline-block;
27 } 27 }
28 .box2 { 28 .box2 {
29 box-shadow: 2px 30px 0px 0.5px red; 29 box-shadow: 2px 30px 0px 0.5px red;
30 border: 1px black solid; 30 border: 1px black solid;
31 display: inline-block; 31 display: inline-block;
32 } 32 }
33 </style> 33 </style>
34 34
35 <script src="../../resources/ahem.js"></script>
35 <body onload="startTest();"> 36 <body onload="startTest();">
36 37
37 <div id="text">XXX</div> 38 <div id="text">XXX</div>
38 <br> 39 <br>
39 <br> 40 <br>
40 <div class="box">XXX</div> 41 <div class="box">XXX</div>
41 <div class="box2">XXX</div> 42 <div class="box2">XXX</div>
42 43
43 </body> 44 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698