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> |