| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 .img { border-style: outset; border-width: 50px; content: "";} |
| 4 </style> |
| 5 <img usemap="#map" class="img"> |
| 6 <map name="map"><area shape="poly" coords="0,0,0,100,100,100,100,0"></map> |
| 7 <p>crbug.com/485414: Inline content data creating an inline image object shouldn
't cause an ASSERT. Click on the rectangle to test. </p> |
| 8 <div id="result">Test passes if it does not crash.</div> |
| 9 <script> |
| 10 if (window.testRunner) { |
| 11 testRunner.dumpAsText(); |
| 12 eventSender.mouseMoveTo(20, 20); |
| 13 eventSender.mouseDown(); |
| 14 eventSender.mouseUp(); |
| 15 } |
| 16 </script> |
| OLD | NEW |