mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
14 lines
472 B
HTML
14 lines
472 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Linear gradient stop normalization</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-images-3/#linear-gradients">
|
|
<meta name="assert" content="Rendering of linear-gradient with normalized color stops">
|
|
<link rel="match" href="reference/100x100-blue.html">
|
|
<style>
|
|
#gradient {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-image: linear-gradient(green -50%, blue -50%);
|
|
}
|
|
</style>
|
|
<div id="gradient"></div>
|