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

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: 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 }
6 .float {
7 float: left;
8 }
9 .crasher {
10 /* 1x1 px transparent png */
11 shape-outside: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA BCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII=);
12 margin-top: -29px;
Bem Jones-Bey (adobe) 2015/01/09 00:01:08 The WebKit patch has -19px here. Did that not cras
13 }
14 </style>
15 <body>
16 <p>This test passes if it doesn't crash.</p>
17 <div class="container">
18 <div class="float">a a</div>
19 <div class="float crasher">a</div>
20 a
21 </div>
22 </body>
23 <script>
24 if (window.testRunner)
25 testRunner.dumpAsText();
26 </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