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

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-center-coord-positioning-crash.html

Issue 923533004: [CSS Shapes] Normalize distances to closest/farthest side (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix ellipse case too Created 5 years, 10 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-floats-center-coord-positioning-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=457807
5 -->
6 <head>
7 <style>
8 div { width: 50px; height; 50px; float: right; }
9 #ellipse-center-coord-outside-refbox0 { shape-outside: padding-box ellipse(close st-side at -75px -80px); }
10 #ellipse-center-coord-outside-refbox1 { shape-outside: padding-box ellipse(close st-side at 75px 80px); }
11 #circle-center-coord-outside-refbox0 { shape-outside: padding-box circle(closest -side at -75px -80px); }
12 #circle-center-coord-outside-refbox1 { shape-outside: padding-box circle(closest -side at 75px 80px); }
13 </style>
14 <body>
15 <div>This test should not crash.</div>
16 <div id="ellipse-center-coord-outside-refbox0">Zero</div>
17 <div id="ellipse-center-coord-outside-refbox1">One</div>
18 <div id="circle-center-coord-outside-refbox0">Two</div>
19 <div id="circle-center-coord-outside-refbox1">Three</div>
20 <script>
21 if (window.testRunner)
22 testRunner.dumpAsText();
23 </script>
24 </body>
25 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-center-coord-positioning-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698