https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 89a7b39d4c0b8c2b2339fd26fa39ab802b6980f1 authored by Rune Lillesveen on 23 March 2018, 14:59:20 UTC
Don't skip display:none options finding selectable options.
Tip revision: 89a7b39
offset-path-ray-ref.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Motion Path: ray paths</title>
    <link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
    <style>
      #target {
        position: absolute;
        left: 300px;
        top: 100px;
        width: 300px;
        height: 200px;
        background-color: lime;
        transform-origin: 0px 0px;
        transform: rotate(60deg) translate(20px);
      }
    </style>
  </head>
  <body>
    <div id="target"></div>
  </body>
</html>
back to top