Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / shapes / shape-outside-floats / shape-outside-negative-height-crash.html
blob81f043aacda86c67f1896262a0e7efdf753dbc35
1 <!DOCTYPE html>
2 <style>
3 .container {
4 width: 10px;
5 font: 18px Ahem;
7 .float {
8 float: left;
10 .crasher {
11 /* 1x1 px transparent png */
12 shape-outside: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII=);
13 margin-top: -19px;
15 </style>
16 <body>
17 <p>This test passes if it doesn't crash.</p>
18 <div class="container">
19 <div class="float">a a</div>
20 <div class="float crasher">a</div>
22 </div>
23 </body>
24 <script>
25 if (window.testRunner)
26 testRunner.dumpAsText();
27 </script>