mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D65928 --HG-- extra : moz-landing-system : lando
14 lines
490 B
HTML
14 lines
490 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Linear gradient stop normalization</title>
|
|
<link rel="help" href="https://www.w3.org/TR/css-images-3/#repeating-gradients">
|
|
<meta name="assert" content="Rendering of repeating-linear-gradient w/ stops at the same place">
|
|
<link rel="match" href="reference/100x100-blue.html">
|
|
<style>
|
|
#gradient {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-image: repeating-linear-gradient(orange 50%, blue 50%);
|
|
}
|
|
</style>
|
|
<div id="gradient"></div>
|