https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 04e127873f9be93a97d923a3a977fab4d75eb992 authored by Stephen McGruer on 11 April 2018, 18:23:39 UTC
Web Animations: Fix bugs in procedure to process a keyframes argument
Tip revision: 04e1278
background-image-001.html
<!DOCTYPE html>
<title>CSS Backgrounds: background-image div</title>
<link rel="author" title="Justin Hill" href="http://www.justin-hill.com">
<link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-image">
<link rel="match" href="reference/background-image-001-ref.html">
<meta name="assert" content="Test checks that background-image displays raster image for div background.">
<style>
    .container {
      top:50px;
      left:50px;
      width: 100px;
      height: 100px;
      background-image: url("support/green.png");
      background-color: red;
    }
</style>
<body>
    <p> Test passes if green image shows and no red visable.</p>
    <div class="container"></div>
</body>
back to top