https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c248d538c0ba192b0a7b55eef4aaed6e1b83a5a0 authored by Robert Longson on 14 April 2018, 16:20:39 UTC
support ping, rel, referrerPolicy, relList, hreflang, type and text on SVG a elements
Tip revision: c248d53
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