https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 94e78fddb888185d7d5d0f737c4c9b84bd638d59 authored by Mike Taylor on 30 March 2018, 21:08:48 UTC
Add tests for Event.srcElement
Tip revision: 94e78fd
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