| 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=319069 |
| 5 --> |
| 6 <head> |
| 7 <style> |
| 8 #margin-empty-polygon-0vertex { shape-inside: polygon(); shape-margin: 5px; } |
| 9 #margin-empty-polygon-1vertex { shape-inside: polygon(1px 2px); shape-margin: 5p
x; } |
| 10 #margin-empty-polygon-2vertex { shape-inside: polygon(1px 2px, 3px 4px); shape-m
argin: 5px; } |
| 11 </style> |
| 12 <body> |
| 13 <div>This test should not crash.</div> |
| 14 <div id="margin-empty-polygon-0vertex">Zero</div> |
| 15 <div id="margin-empty-polygon-1vertex">One</div> |
| 16 <div id="margin-empty-polygon-2vertex">Two</div> |
| 17 <script> |
| 18 if (window.testRunner) |
| 19 testRunner.dumpAsText(); |
| 20 </script> |
| 21 </body> |
| 22 </html> |
| OLD | NEW |