mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
Fixes the glitches mentioned in #19554. Now gradient tiles are placed in the whole bounding box.
19 lines
326 B
HTML
19 lines
326 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
#x {
|
|
width: 200px;
|
|
height: 200px;
|
|
border: 40px;
|
|
border-style: solid;
|
|
border-color: transparent;
|
|
background-image: repeating-linear-gradient(to bottom right, white, black, white 30px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="x"></div>
|
|
</body>
|
|
</html>
|