Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / radial-gradient-position-with-relative-offset-expected.html
blob354376ca6e1223fd1769ba69dd9832e212f317a5
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .box {
6 height: 200px;
7 width: 200px;
8 margin: 10px;
11 .gradient1 {
12 background: radial-gradient(5em circle at 55px 125px, yellow, blue);
15 .gradient2 {
16 background: radial-gradient(5em circle at 55% 65px, yellow, blue);
19 .gradient3 {
20 background: radial-gradient(5em circle at 55% 135px, yellow, blue);
23 .gradient4 {
24 background: radial-gradient(5em circle at 45% 50%, yellow, blue);
27 .gradient5 {
28 background: radial-gradient(5em circle at 55% 50%, yellow, blue);
31 .gradient6 {
32 background: radial-gradient(5em circle at 135px 50%, yellow, blue);
35 </style>
36 </head>
37 <body>
38 <div class="gradient1 box"></div>
39 <div class="gradient2 box"></div>
40 <div class="gradient3 box"></div>
41 <div class="gradient4 box"></div>
42 <div class="gradient5 box"></div>
43 <div class="gradient6 box"></div>
44 </body>
45 </html>