https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9f65d811032d205ffa4cebf3449c1e8e3fecd5c4 authored by Ting-Yu Lin on 26 December 2018, 18:48:28 UTC
Shrink columns width in column-span reftests to fit the window on wpt.
Tip revision: 9f65d81
t44-currentcolor-background-b-ref.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<style>
  #two {
    color: green;
    background: green;
  }
  #three {
    color: green;
    background: green;
  }
</style>
<body>
  <p>This paragraph should be followed by two green blocks.</p>
  <p id="two">This text should NOT be visible.</p>
  <p id="three">This text should NOT be visible.</p>
</body>
back to top