https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 937e5a795fd890bf2d3925589ae87313b6500549 authored by Raymond Toy on 28 June 2018, 17:31:35 UTC
Enable analyser tests to run with Chrome
Tip revision: 937e5a7
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