blob: 7f95f46eaf4fa1f7375f5a8b01c90389eff338c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<title>Image set linear-gradient rendering</title>
<link rel="author" title="Noam Rosenthal" href="mailto:noam@webkit.org">
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<style>
#test {
width: 100px;
height: 100px;
background: linear-gradient(green, lightgreen);
}
</style>
<div id="test"></div>
|