https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 952bda327c9bc8efae043de3071d0421efe702d1 authored by Boris Zbarsky on 26 March 2018, 18:16:29 UTC
part 3. Add testing for what mutation observers happen when doing DOMTokenList.replace.
Tip revision: 952bda3
webkit-linear-gradient-line-top.html
<!doctype html>
<title>-webkit-linear-gradient(top)</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="'top' in -webkit-linear-gradient is equivalent to 'to bottom' in modern syntax">
<link rel="match" href="green-ref.html">
<style>
  #outer {
    width: 100px;
    height: 100px;
    overflow: hidden;
  }
  #inner {
    width: 100px;
    height: 200px;
    background-image: -webkit-linear-gradient(top, green 50%, red 50%);
  }
</style>
<div id="outer">
  <div id="inner"></div>
</div>
back to top