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

Unified Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius-002-expected.html

Issue 230403003: [CSS Shapes] large corner radius combined with 0 radius does not wrap properly (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use unprefixed version 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius-002-expected.html
diff --git a/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius-002-expected.html b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius-002-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..d0906f09b77470327ad60100d026eb0530d72d3b
--- /dev/null
+++ b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius-002-expected.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<style>
+#container {
+ width: 300px;
+ font: 40px/1 Ahem;
+ color: green;
+ text-align: right;
+}
+
+#float {
+ float: right;
+ width: 240px;
+ height: 120px;
+ border-top-left-radius: 60px;
+ border-bottom-left-radius: 60px;
+ border-top-right-radius: 0px;
+ border-bottom-right-radius: 120px;
+ background-color: blue;
+ background-clip: border-box;
+}
+</style>
+<body>
+ <p>The green square should apear to the left of the blue rounded shape.
+ <div id="container">
+ <div id="float"></div>
+ <br>X
+ </div>
+</body>

Powered by Google App Engine
This is Rietveld 408576698