summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox_order-abspos-space-around-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/flexbox_order-abspos-space-around-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/flexbox_order-abspos-space-around-ref.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/flexbox_order-abspos-space-around-ref.html b/testing/web-platform/tests/css/css-flexbox/flexbox_order-abspos-space-around-ref.html
new file mode 100644
index 0000000000..30e8004480
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/flexbox_order-abspos-space-around-ref.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<title>flexbox | order; justify-content: space-around</title>
+<link rel="author" href="http://opera.com" title="Opera Software">
+<style>
+div {
+ background: blue;
+ border: 1px solid black;
+ width: 27em;
+ height: 8em;
+ position: relative;
+}
+span {
+ background: yellow;
+ width: 5em;
+ height: 8em;
+ position: absolute;
+ top: 0;
+ left: 2em;
+ display: block;
+}
+span+span {left: 11em;}
+span+span+span {left: 20em;}
+</style>
+
+<div>
+ <span>filler</span>
+ <span>filler</span>
+ <span>filler</span>
+</div>