Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / shapes / shape-outside-floats / shape-outside-uncached-gradient.html
blob41f0817b6e8b79746db8a6e4df2c4c741abafebd
1 <!DOCTYPE html>
2 <html>
3 <!--
4 This is a regression test for https://code.google.com/p/chromium/issues/detail?id=378469
5 -->
6 <head>
7 <style>
8 #image-shape {
9 float: left;
10 shape-outside: linear-gradient(magenta, currentColor); // currentColor prevents gradient from being cached
11 width: 100px;
12 height: 100px;
14 </style>
15 <div>This test should not crash.</div>
16 <div>
17 <div id="image-shape"></div>
18 Hello World
19 </div>
20 <script>
21 if (window.testRunner)
22 testRunner.dumpAsText();
23 </script>
24 </body>
25 </html>