Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(691)

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-negative-height-crash.html

Issue 844733004: [CSS Shapes] Negative raster shape height leads to crash (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Force line-height Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/shapes/shape-outside-floats/shape-outside-negative-height-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .container {
4 width: 10px;
5 font: 18px Ahem;
6 }
7 .float {
8 float: left;
9 }
10 .crasher {
11 /* 1x1 px transparent png */
12 shape-outside: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA BCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII=);
13 margin-top: -19px;
14 }
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>
21 a
22 </div>
23 </body>
24 <script>
25 if (window.testRunner)
26 testRunner.dumpAsText();
27 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/shapes/shape-outside-floats/shape-outside-negative-height-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698