<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED DUPLICATE - imported/mathml-in-html5/mathml/presentation-markup/scripts/subsup-parameters-1.html is a flaky timeout"
   href="https://bugs.webkit.org/show_bug.cgi?id=158993#c4">Comment # 4</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED DUPLICATE - imported/mathml-in-html5/mathml/presentation-markup/scripts/subsup-parameters-1.html is a flaky timeout"
   href="https://bugs.webkit.org/show_bug.cgi?id=158993">bug 158993</a>
              from <span class="vcard"><a class="email" href="mailto:ap&#64;webkit.org" title="Alexey Proskuryakov &lt;ap&#64;webkit.org&gt;"> <span class="fn">Alexey Proskuryakov</span></a>
</span></b>
        <pre>The ideal workaround is something like this:

  var loaded = false;
  var fontsLoaded = false;

  window.addEventListener(&quot;load&quot;, 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.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>