https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7cb0d28a36927eb21b7984a80c6629969634a1e2 authored by moz-wptsync-bot on 13 March 2018, 19:13:50 UTC
Performance.measure(name) should not throw if name is one of the readonly attribute of the Performance interface,
Tip revision: 7cb0d28
flex-flow-007-ref.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Flexbox Test Reference File</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<style>
  div {
    background-color: green;
    height: 25px;
    width: 100px;
  }
</style>
<body>
  <p>Test passes if there is a filled green square and no red, the number within square is '1 2 3 4' from top to bottom.</p>
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
</body>
back to top