tor-browser

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

image-no-interpolation.html (785B)


      1 <!DOCTYPE html>
      2 <link rel=author href="mailto:jarhar@chromium.org">
      3 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441">
      4 <link rel=help href="https://drafts.csswg.org/css-transitions-2/#transition-property-property">
      5 <link rel=help href="https://drafts.csswg.org/css-images/#the-image-rendering">
      6 <link rel=help href="https://drafts.csswg.org/css-images/#the-image-orientation">
      7 <script src="/resources/testharness.js"></script>
      8 <script src="/resources/testharnessreport.js"></script>
      9 <script src="/css/support/interpolation-testcommon.js"></script>
     10 
     11 <body>
     12 <script>
     13 test_no_interpolation({
     14  property: 'image-orientation',
     15  from: 'initial',
     16  to: 'none'
     17 });
     18 
     19 test_no_interpolation({
     20  property: 'image-rendering',
     21  from: 'initial',
     22  to: 'pixelated'
     23 });
     24 </script>