https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e893060fea346c1b05076d048d34bfac0ed23172 authored by Chris Nardi on 02 April 2018, 17:04:26 UTC
Remove test that CSSStyleSheet.media is read-only
Tip revision: e893060
t422-rgba-onscreen-multiple-boxes-c-ref.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<style>
  body { background: white; }
  div.test { margin: 1em; line-height: 0; font-family: monospace; }
  div.test span { background: rgb(92, 92, 255); color: rgb(92, 92, 255); }
  div.ref { height: 1em; width: 5em; background: rgb(92, 92, 255); }
</style>
<body>
  <p>These two rectangles should be the same color:</p>
  <div class="test"><span>XXXXX<br/>XXXXX</span></div>
  <div class="ref"></div>
</body>
back to top