tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

conditional-processing-01.html (648B)


      1 <!doctype html>
      2 <html class="reftest-wait">
      3 <title>Test animation as children of failed conditional processing test elements</title>
      4 <link rel="match" href="../struct/reftests/reference/green-100x100.html">
      5 <script src="/common/reftest-wait.js"></script>
      6 <script src="/common/rendering-utils.js"></script>
      7 <script>
      8 function test() {
      9  document.getElementsByTagName('svg')[0].setCurrentTime(2);
     10  waitForAtLeastOneFrame().then(takeScreenshot);
     11 }
     12 </script>
     13 <svg onload="test()">
     14  <g systemLanguage="x-xl">
     15    <set xlink:href="#test" attributeName="width" begin="2s" to="0" />
     16  </g>
     17  <rect id="test" width="100" height="100" fill="green"/>
     18 </svg>