https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a1564e828861e2dbb83112d3b7d48c6d97be6dfc authored by Anne van Kesteren on 18 November 2015, 11:48:35 UTC
Tests for navigating window.opener across origins
Tip revision: a1564e8
drawimage_html_image_6_ref.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
</head>
<style>
  html, body {
    margin: 0;
  }
  #destination {
    width: 100px;
    height: 100px;
    background-color: red;
    background-color: red;
    background-image: url("../2x2.png");
    background-position: -32px -32px;
    background-size: 64px 64px;
    background-repeat: no-repeat;
  }

</style>
<body>
<div id="destination"></div>
</body>
</html>
back to top