Index: LayoutTests/fast/css/bfc-percentage-margin-expected.html |
diff --git a/LayoutTests/fast/css/bfc-percentage-margin-expected.html b/LayoutTests/fast/css/bfc-percentage-margin-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..648ef8b1505351f58b5b1ff152fce419568e2b4d |
--- /dev/null |
+++ b/LayoutTests/fast/css/bfc-percentage-margin-expected.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<style> |
+#container { |
+ position: relative; |
+} |
+.square { |
+ width: 100px; |
+ height: 100px; |
+ background-color: blue; |
+ position: absolute; |
+} |
+.right { |
+ left: 120px; |
+} |
+</style> |
+<p>You should see two blue squares below.</p> |
+<div id="container"> |
+ <div class="square"></div> |
+ <div class="square right"></div> |
+</div> |