https://github.com/web-platform-tests/wpt
Raw File
Tip revision: bc6f1889e65da65d5645ade6557e216d2dc73d09 authored by Anne van Kesteren on 24 April 2018, 09:22:31 UTC
remove dead code; add more tests
Tip revision: bc6f188
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