Changeset 77887 in webkit


Ignore:
Timestamp:
Feb 7, 2011 8:21:27 PM (13 years ago)
Author:
yuzo@google.com
Message:

2011-02-07 Yuzo Fujishima <yuzo@google.com>

Unreviewed attempt to fix a flaky test.
https://bugs.webkit.org/show_bug.cgi?id=51757

  • fast/css/font-face-download-error.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r77886 r77887  
     12011-02-07  Yuzo Fujishima  <yuzo@google.com>
     2
     3        Unreviewed attempt to fix a flaky test.
     4        https://bugs.webkit.org/show_bug.cgi?id=51757
     5
     6        * fast/css/font-face-download-error.html:
     7
    182011-02-07  Zhenyao Mo  <zmo@google.com>
    29
  • trunk/LayoutTests/fast/css/font-face-download-error.html

    r63719 r77887  
    5757<script src="../js/resources/js-test-pre.js"></script>
    5858</head>
    59 <body>
     59<body onload="runTest()">
    6060<div id="description"></div>
    6161<div id="tests"></div>
     
    127127// We need to run tests after the font downloading succeeded or failed.
    128128// Using a timer is not ideal, but there seems to be no better options.
    129 window.setTimeout(test, 100);
     129function runTest()
     130{
     131    window.setTimeout(test, 100);
     132}
    130133
    131134var successfullyParsed = true;
Note: See TracChangeset for help on using the changeset viewer.