https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 491a02ce6f091db542aed561e3d984b0a18f4188 authored by fergald on 04 April 2018, 22:12:43 UTC
Handle the case when MANIFEST.json is empty
Tip revision: 491a02c
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