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..f36efb0ec1a4347a53fd38df2a16afe7b04f74f4 |
--- /dev/null |
+++ b/LayoutTests/fast/css/bfc-percentage-margin-expected.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<style> |
+.square { |
+ width: 100px; |
+ height: 100px; |
+ background-color: blue; |
+ position: absolute; |
+} |
+.right { |
+ left: 128px; |
+} |
+</style> |
+<p>You should see two blue squares below.</p> |
+<div class="square"></div> |
+<div class="square right"></div> |
Julien - ping for review
2014/03/06 23:05:05
It's weird that the offset is 128px when the left-
rune
2014/03/07 14:20:24
Yes, I've modified the reference html now to add a
|