tor-browser

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

strokeDasharray.html (811B)


      1 <!DOCTYPE html>
      2 <script src="/resources/testharness.js"></script>
      3 <script src="/resources/testharnessreport.js"></script>
      4 <div id='container'>
      5    <div id='element'></div>
      6 </div>
      7 <script>
      8 
      9 var container = document.getElementById('container');
     10 var element = document.getElementById('element');
     11 
     12 test(function() {
     13    container.style.fontSize = '10px';
     14 
     15    var keyframes = [
     16        {strokeDasharray: '10em 10em'},
     17        {strokeDasharray: '10em 10em'}
     18    ];
     19    var player = element.animate(keyframes, 10);
     20    player.pause();
     21    player.currentTime = 5;
     22 
     23    var strokeDasharray = getComputedStyle(element).strokeDasharray;
     24    container.style.fontSize = '20px';
     25    assert_not_equals(getComputedStyle(element).strokeDasharray, strokeDasharray);
     26 }, 'strokeDasharray responsive to style changes');
     27 
     28 </script>