https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8c228b827f2f7d2d317a13f48ff6022b0da5b10a authored by Luke Bjerring on 20 July 2018, 17:32:08 UTC
Try to automate u2f authentication, with vendor-specific implementations of what 'authenticate_u2f' would be.
Tip revision: 8c228b8
polar-origin-auto-002.html
<!DOCTYPE html>
<html>
 <head>
  <title>CSS Test: Origin of Coordinates</title>
  <link rel="author" title="Jihye Hong" href="mailto:jh.hong@lge.com" />
  <link rel="help" href="https://www.w3.org/TR/css-round-display-1/#polar-origin-property" />
  <meta name="flags" content="" />
  <meta name="assert" content="Test checks that the origin of the coordinate system specified with 'polar-origin'." />
  <style type="text/css">
    .container {
      width: 200px;
      height: 200px;
      border: medium solid black;
    }
    .item {
      position: absolute;
      polar-origin: auto;
      polar-distance: 0px;
      polar-angle: 90deg;
      width: 50px;
      height: 50px;
      background-color: red;
    }
  </style>
 </head>
 <body>
  <p>Test passes if the center of a red box is positioned at the center of the containing block.<br>
  The element is positioned using polar coordinates and the origin of coordinates is the center of the containing block.</p>
  <div class="container">
    <div class="item"></div>
  </div>
 </body>
</html>
back to top