mirror of
https://github.com/servo/servo.git
synced 2025-07-05 14:33:38 +01:00
22 lines
702 B
HTML
22 lines
702 B
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>
|