https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 50873c90ca7681d02c9994de53b213a5b035d193 authored by rohilla21 on 16 March 2018, 19:04:14 UTC
armenian/css3-counter-styles-008.html: Removes range
Tip revision: 50873c9
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