Index: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-circle-005.html |
diff --git a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-circle-001-expected.html b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-circle-005.html |
similarity index 51% |
copy from LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-circle-001-expected.html |
copy to LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-circle-005.html |
index 75c59bf42fda95e6898180a815584455d08c10f0..93f3a94b701e2a2fe2dd39a95a152489e741537b 100644 |
--- a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-circle-001-expected.html |
+++ b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-circle-005.html |
@@ -1,9 +1,5 @@ |
<!DOCTYPE html> |
-<title>CSS Reference</title> |
-<link rel="author" title="Adobe" href="http://html.adobe.com/"> |
-<link rel="author" title="Bem Jones-Bey" href="mailto:bjonesbe@adobe.com"> |
-<link rel="help" href="http://dev.w3.org/csswg/css-shapes-1/#shape-outside-property"> |
-<meta name="flags" content="ahem"> |
+<title>Circle shape-outside on floats center set using keywords and offsets</title> |
<style> |
.container { |
font: 40px/1 Ahem, sans-serif; |
@@ -17,21 +13,29 @@ |
} |
.circle { |
- width: 138px; |
+ width: 80px; |
height: 40px; |
background-color: green; |
} |
+ |
+.circle-right { |
+ -webkit-shape-outside: circle(at top 20px left 20px) content-box; |
+} |
+ |
+.circle-left { |
+ -webkit-shape-outside: circle(at bottom 20px right 20px) content-box; |
+} |
</style> |
<body> |
<p>You should see a green rectangle. You shouldn't see any red.</p> |
<div class="container"> |
- <div style="float: left" class="circle"></div> |
+ <div style="float: left; margin-right: 40px;" class="circle circle-left"></div> |
X |
</div> |
<div class="container" style="text-align: right"> |
-<div style="float: right" class="circle"></div> |
+<div style="float: right; margin-left: 40px;" class="circle circle-right"></div> |
X |
</div> |
</body> |