mirror of
https://github.com/servo/servo
synced 2026-05-12 18:06:32 +02:00
This implements the CSS `linear-gradient` property per the CSS-IMAGES
specification:
http://dev.w3.org/csswg/css-images-3/
Improves GitHub.
21 lines
285 B
HTML
21 lines
285 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that linear gradients render *something*. -->
|
|
<style>
|
|
section {
|
|
display: block;
|
|
width: 300px;
|
|
height: 150px;
|
|
border: solid black 1px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section id=a></section>
|
|
<section id=b></section>
|
|
</body>
|
|
</html>
|
|
|
|
|