Changeset 156486 in webkit


Ignore:
Timestamp:
Sep 26, 2013, 12:14:28 PM (12 years ago)
Author:
ap@apple.com
Message:

fast/css/font-face-data-uri.html is failing
https://bugs.webkit.org/show_bug.cgi?id=82744

Reviewed by Dan Bernstein.

  • fast/css/font-face-data-uri.html: There is no need to keep retrying, we can just

wait for onload - as long as the font load starts early enough.

Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r156478 r156486  
     12013-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
    1112013-09-26  Commit Queue  <commit-queue@webkit.org>
    212
  • trunk/LayoutTests/fast/css/font-face-data-uri.html

    r156445 r156486  
    1818<script src="../../resources/js-test-pre.js"></script>
    1919</head>
    20 <body onload="warmUpAndTest()">
     20<body onload="testMain()">
    2121<div id="description"></div>
    2222<div id="console"></div>
     
    4141}
    4242
    43 var trialCount = 0;
     43// Force layout, so that fonts begin to load before the document finishes loading, and thus delay the load event.
     44document.body.offsetTop;
    4445
    45 function warmUpAndTest()
    46 {
    47     document.body.offsetTop; // Force layout.
    48     if (trialCount > 200
    49         || document.getElementById("ref0").offsetWidth == document.getElementById("test0").offsetWidth
    50         || 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 }
    5846</script>
    5947<script src="../../resources/js-test-post.js"></script>
Note: See TracChangeset for help on using the changeset viewer.