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

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-negative-margins.html

Issue 1008893002: [CSS Shapes] Normalize margin box size (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Clamp the reference box size to zero Created 5 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 <style>
3 #one {
4 float: right;
5 margin: 5222vh -6568em;
6 shape-outside: ellipse(50% 25% at 50% 25%);
7 }
8 #two {
9 float: right;
10 margin: -5222vh 6568em;
11 shape-outside: ellipse(50% 25% at 50% 25%);
12 }
13 </style>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 </script>
18 <div id="one"></div>
19 <div id="two"></div>
20 <div>Test passes if it does not crash.</div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698