mirror of
https://github.com/servo/servo.git
synced 2025-06-18 22:34:30 +01:00
This implements the CSS `linear-gradient` property per the CSS-IMAGES specification: http://dev.w3.org/csswg/css-images-3/ Improves GitHub.
20 lines
285 B
HTML
20 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>
|
|
|
|
|