Changeset 156486 in webkit
- Timestamp:
- Sep 26, 2013, 12:14:28 PM (12 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r156478 r156486 1 2013-09-26 Alexey Proskuryakov <ap@apple.com> 2 3 fast/css/font-face-data-uri.html is failing 4 https://bugs.webkit.org/show_bug.cgi?id=82744 5 6 Reviewed by Dan Bernstein. 7 8 * fast/css/font-face-data-uri.html: There is no need to keep retrying, we can just 9 wait for onload - as long as the font load starts early enough. 10 1 11 2013-09-26 Commit Queue <commit-queue@webkit.org> 2 12 -
trunk/LayoutTests/fast/css/font-face-data-uri.html
r156445 r156486 18 18 <script src="../../resources/js-test-pre.js"></script> 19 19 </head> 20 <body onload=" warmUpAndTest()">20 <body onload="testMain()"> 21 21 <div id="description"></div> 22 22 <div id="console"></div> … … 41 41 } 42 42 43 var trialCount = 0; 43 // Force layout, so that fonts begin to load before the document finishes loading, and thus delay the load event. 44 document.body.offsetTop; 44 45 45 function warmUpAndTest()46 {47 document.body.offsetTop; // Force layout.48 if (trialCount > 20049 || document.getElementById("ref0").offsetWidth == document.getElementById("test0").offsetWidth50 || document.getElementById("ref1").offsetWidth == document.getElementById("test1").offsetWidth) {51 // Font has been loaded (or the wait limit has been exceeded). Now run the test.52 testMain();53 return;54 }55 trialCount++;56 window.setTimeout(warmUpAndTest, 10);57 }58 46 </script> 59 47 <script src="../../resources/js-test-post.js"></script>
Note:
See TracChangeset
for help on using the changeset viewer.