Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <!-- | |
| 4 This is a regression test for https://code.google.com/p/chromium/issues/detail?i d=378469 | |
| 5 --> | |
| 6 <head> | |
| 7 <style> | |
| 8 #image-shape { | |
| 9 float: left; | |
| 10 shape-outside: linear-gradient(magenta, currentColor); // currentColor preve nts gradient from being cached | |
| 11 width: 100px; | |
| 12 height: 100px; | |
| 13 } | |
| 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> | |
| OLD | NEW |