https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 410ecd8aff1b5ef73898773094339deb2df92a9c authored by moz-wptsync-bot on 16 March 2018, 11:12:05 UTC
WPT should use toString() and not toSource(),
Tip revision: 410ecd8
webkit-linear-gradient-line-left.html
<!doctype html>
<title>-webkit-linear-gradient(left)</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="'left' in -webkit-linear-gradient is equivalent to 'to right' 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(left, green 50%, red 50%);
  }
</style>
<div id="outer">
  <div id="inner"></div>
</div>
back to top