Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / gradients / unprefixed-generated-gradients.html
blob53ebc4470e3511db0fa5aa58e79dd13ff845a25b
1 <!doctype html>
2 <style>
3 .radial::before { width:150px; height:150px; border:2px solid black;
4 content: radial-gradient(circle at 45px 45px, #A7D30C, #019F62 40px, rgba(1,159,98,0) 50px);
5 display: block;
7 .linear::after { width:130px; height:130px; border:2px solid black;
8 content: linear-gradient(to bottom, #00abeb, #fff 50%, #66cc00 50%, #fff);
9 display: block;
11 </style>
12 <div class="radial"></div>
13 <div class="linear"></div>
15 <script>
16 if (window.testRunner) {
17 testRunner.dumpAsTextWithPixelResults();
19 </script>