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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/floats/shape-inside-multiple-segment-polygon-floating-iframe-inline-content-crash.html

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove now unused segmentIsEmpty Created 6 years, 8 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <!--
4 This is a regression test for https://code.google.com/p/chromium/issues/detail?i d=344359
5
6 The test is similar to shape-inside-multiple-segment-polygon-floating-iframe-inl ine-content-crash.html,
7 exept this test doesn't test updating the segments for the shape-inside in LineW idth::fitBelowFloats() after
8 the the float, but tests BreakingContextInlineHeaders.h:updateSegmentsForShapes.
9 -->
10 <head>
11 <style>
12 iframe {
13 float: right;
14 shape-outside: content-box;
15 }
16 body {
17 shape-inside: polygon(99999999px 0px, 999px 0px, 88px 0px, 0px 99999px, 99px 0px, 76px 0px, 0px 99999px);
18 }
19 </style>
20 <body>
21 <iframe></iframe>X
22
23 <div>This test should not crash.</div>
24 <script>
25 if (window.testRunner)
26 testRunner.dumpAsText();
27 </script>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698