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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-empty-polygon-crash.html

Issue 68263018: [CSS Shapes] Empty polygons with non-zero shape-padding cause an ASSERT crash (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed extra shape-outside test file Created 7 years, 1 month 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-inside/shape-inside-empty-polygon-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 <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
« no previous file with comments | « no previous file | LayoutTests/fast/shapes/shape-inside/shape-inside-empty-polygon-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698