[Webkit-unassigned] [Bug 158993] imported/mathml-in-html5/mathml/presentation-markup/scripts/subsup-parameters-1.html is a flaky timeout

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 21 12:16:37 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=158993

--- Comment #4 from Alexey Proskuryakov <ap at webkit.org> ---
The ideal workaround is something like this:

  var loaded = false;
  var fontsLoaded = false;

  window.addEventListener("load", function() {
    loaded = true;
    if (fontsLoaded)
      runTests();
  });
  document.fonts.ready.then(function() {
    fontsLoaded = true;
    if (loaded)
      runTests();
  });

But it's an imported test, so we can't really modify it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160621/d7a96356/attachment.html>


More information about the webkit-unassigned mailing list