mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
17 lines
318 B
HTML
17 lines
318 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Gradient interpolation</title>
|
|
<link rel="author" title="Mike Bremford" href="mailto:mike@bfo.com">
|
|
<style>
|
|
.test {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: rgb(0% 50% 50%);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="test"></div>
|
|
</body>
|
|
</html>
|