https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 821e3a0ec1d006772be7b2250706e063bfb15654 authored by nikhil on 09 February 2018, 06:43:24 UTC
[css-typed-om] CSSTransformComponent should have default value for is2D.
Tip revision: 821e3a0
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