https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7578e333cabf4c2ddeaed1a9fc57cbc18502bc02 authored by Jonathon Kereliuk on 21 March 2018, 14:01:39 UTC
fix trailing whitespace
Tip revision: 7578e33
transform-overflow-002-ref.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
    <style>
      body > div {
        height: 200px;
        width: 200px;
        overflow: scroll;
      }
      body > div > div {
        height: 100px;
        width: 100px;
        background: blue;
        position: relative;
        left: 150px;
      }
    </style>
  </head>
  <body>
    <div>
      <div></div>
    </div>
  </body>
</html>
back to top