summaryrefslogtreecommitdiff
path: root/layout/reftests/flexbox/flexbox-position-absolute-1-ref.xhtml
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commitad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/flexbox/flexbox-position-absolute-1-ref.xhtml
parent15477ed9af4859dacb069040b5d4de600803d3bc (diff)
downloadaura-central-ad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299.tar.gz
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/flexbox/flexbox-position-absolute-1-ref.xhtml')
-rw-r--r--layout/reftests/flexbox/flexbox-position-absolute-1-ref.xhtml74
1 files changed, 74 insertions, 0 deletions
diff --git a/layout/reftests/flexbox/flexbox-position-absolute-1-ref.xhtml b/layout/reftests/flexbox/flexbox-position-absolute-1-ref.xhtml
new file mode 100644
index 000000000..02a2a90cd
--- /dev/null
+++ b/layout/reftests/flexbox/flexbox-position-absolute-1-ref.xhtml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<!-- Reference case for absolutely positioned children of a flex container. -->
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <style>
+ div.containingBlock {
+ top: 15px;
+ left: 20px;
+ height: 400px;
+ position: absolute;
+ border: 2px dashed purple;
+ }
+ .abspos {
+ position: absolute;
+ left: 5px;
+ border: 2px dotted black;
+ }
+ div.flexbox {
+ width: 200px;
+ height: 100px;
+ }
+ div.a {
+ width: 100%;
+ height: 100px;
+ background: lightgreen;
+ display: inline-block;
+ }
+ div.b {
+ width: 100%;
+ height: 100px;
+ background: yellow;
+ display: inline-block;
+ }
+ div.inflex {
+ width: 20px;
+ height: 100px;
+ background: gray;
+ display: inline-block;
+ }
+ div.noFlexFn {
+ width: 15px;
+ height: 15px;
+ background: teal;
+ display: inline-block;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="containingBlock">
+ <!-- First child abspos: -->
+ <div class="flexbox"
+ ><div class="a abspos" style="width: 30px"/><div class="b"/></div>
+ <!-- Second child abspos: -->
+ <div class="flexbox"
+ ><div class="a"/><div class="b abspos" style="width: 20px"/></div>
+ <!-- Middle child abspos: -->
+ <div class="flexbox"
+ ><div class="a" style="width: 80px"
+ /><div class="inflex abspos"
+ /><div class="b" style="width: 120px"/></div>
+ <!-- Third child abspos, w/ inflexible items & justify-content: space-around: -->
+ <div class="flexbox"
+ ><div class="inflex" style="margin-left: 15px"
+ /><div class="inflex" style="margin-left: 30px"
+ /><div class="inflex" style="margin-left: 30px"
+ /><div class="noFlexFn abspos"
+ /><div class="inflex" style="margin-left: 30px"/></div>
+ </div>
+ </body>
+</html>