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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-empty-polygon-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, 9 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=319069
5 -->
6 <head>
7 <style>
8 #padded-empty-polygon-0vertex { shape-inside: polygon(); shape-padding: 5px; }
9 #padded-empty-polygon-1vertex { shape-inside: polygon(1px 2px); shape-padding: 5 px; }
10 #padded-empty-polygon-2vertex { shape-inside: polygon(1px 2px, 3px 4px); shape-p adding: 5px; }
11 </style>
12 <body>
13 <div>This test should not crash.</div>
14 <div id="padded-empty-polygon-0vertex">Zero</div>
15 <div id="padded-empty-polygon-1vertex">One</div>
16 <div id="padded-empty-polygon-2vertex">Two</div>
17 <script>
18 if (window.testRunner)
19 testRunner.dumpAsText();
20 </script>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698