tor-browser

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

will-change-transform-add-content.html (511B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <link rel="help" href="https://drafts.csswg.org/css-will-change/#will-change">
      4 <link rel="match" href="will-change-transform-add-content-ref.html">
      5 <script src="/common/reftest-wait.js"></script>
      6 <script src="/common/rendering-utils.js"></script>
      7 <div id="target" style="width: 200px; height: 100px; will-change: transform"></div>
      8 <script>
      9 waitForAtLeastOneFrame().then(() => {
     10  target.textContent = 'This text should be visible.';
     11  takeScreenshot();
     12 });
     13 </script>