https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b9c97b372ba9eeb46dc8e5d488df90881bd79f1b authored by Ben Kelly on 19 March 2018, 14:38:38 UTC
Verify that fetch API `force-cache` and `only-if-cached` respect no-store/no-cache headers.
Tip revision: b9c97b3
webkit-linear-gradient-line-right.html
<!doctype html>
<title>-webkit-linear-gradient(right)</title>
<link rel="author" title="Xidorn Quan" href="me@upsuper.org">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://compat.spec.whatwg.org/#css-gradients-webkit-linear-gradient">
<meta name="assert" content="'right' in -webkit-linear-gradient is equivalent to 'to left' in modern syntax">
<link rel="match" href="green-ref.html">
<style>
  #outer {
    width: 100px;
    height: 100px;
    overflow: hidden;
  }
  #inner {
    width: 200px;
    height: 100px;
    background-image: -webkit-linear-gradient(right, red 50%, green 50%);
  }
</style>
<div id="outer">
  <div id="inner"></div>
</div>
back to top