Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / shapes / shape-outside-floats / shape-outside-linear-gradient.html
blobd37b55a8e2b8b527cf395bc3c25563e458f0fa95
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #image-shape {
6 float: left;
7 shape-outside: linear-gradient(to right, rgba(0, 0, 255, 1), rgba(0, 0, 255, 0));
8 shape-image-threshold: 0.75; /* use a bigger threshold than WK test because of Skia gradient rendering difference. */
9 width: 100px;
10 height: 100px;
13 #content {
14 font: 50px/1 Ahem, sans-serif;
15 width: 600px;
16 color: green;
18 </style>
19 <div id="content">
20 <div id="image-shape"></div>
21 X<br>X<br>X
22 </div>
23 </body>
24 </html>