https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 97317790d486c4b239e1e4f9942243a1991dce79 authored by Frédéric Wang on 14 March 2018, 14:14:29 UTC
use requestAnimationFrame instead of setTimeout(..., 0)
Tip revision: 9731779
transform-fixed-bg-ref.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
    <style>
      body {
        margin: 0;
      }
      div {
        background: url(support/transform-triangle-left.svg) 50px 50px;
        width: 100px;
        height: 100px;
        position: relative;
        left: 50px;
        top: 50px;
      }
    </style>
  </head>
  <body>
    <div></div>
  </body>
</html>
back to top