https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c342c1ccba3e21cadb933bc2c648b37af18c26c8 authored by Mustaq Ahmed on 06 April 2018, 14:14:32 UTC
Make BlueTooth/USB requestDevice non-consuming.
Tip revision: c342c1c
transform-transformed-td-contains-fixed-position-ref.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Test (Transforms): Transformed td contains fixed position elements reference.</title>
    <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
    <style>
      body {
        overflow: hidden;
      }
      .pad {
        height: 50px;
      }
      .container {
        transform: translateX(20px) rotate(45deg);
        transform-origin: left;
      }
      .fixed {
        position: fixed;
        top: 15px;
        left: 10px;
        background-color: lightblue;
      }
    </style>
  </head>
  <body>
    <div class='pad'></div>
    <div class='container'>some text<div class='fixed'>fixed</div>
    </div>
  </body>
</html>
back to top