Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / gradients / generated-gradients.html
blobbe95eb68886d35a8402afd65729934d7f7f19576
1 <head>
2 <style>
3 div { }
4 .radial::before { width:150px; height:150px; border:2px solid black;
5 content: -webkit-gradient(radial, 45 45, 10, 52 50, 30, from(#A7D30C), to(rgba(1,159,98,0)), color-stop(90%, #019F62)),
6 -webkit-gradient(radial, 105 105, 20, 112 120, 50, from(#ff5f98), to(rgba(255,1,136,0)), color-stop(75%, #ff0188)),
7 -webkit-gradient(radial, 95 15, 15, 102 20, 40, from(#00c9ff), to(rgba(0,201,255,0)), color-stop(80%, #00b5e2)),
8 -webkit-gradient(radial, 0 150, 50, 0 140, 90, from(#f4f201), to(rgba(228, 199,0,0)), color-stop(80%, #e4c700));
9 display: block;
11 .linear::after { width:130px; height:130px; border:2px solid black;
12 content: -webkit-gradient(linear, left top, left bottom, from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00));
13 display: block;
16 </style>
17 </head>
18 <body>
19 <h1>Radial Gradient Example</h1>
20 <div class="radial">There's some generated content above me.</div>
21 <h1>Linear Gradient Example</h1>
22 <div class="linear">There's some generated content below me.</div>