diff options
Diffstat (limited to 'layout/reftests/webkit-box/webkit-box-abspos-children-1-ref.html')
-rw-r--r-- | layout/reftests/webkit-box/webkit-box-abspos-children-1-ref.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/layout/reftests/webkit-box/webkit-box-abspos-children-1-ref.html b/layout/reftests/webkit-box/webkit-box-abspos-children-1-ref.html new file mode 100644 index 0000000000..2bc8596dee --- /dev/null +++ b/layout/reftests/webkit-box/webkit-box-abspos-children-1-ref.html @@ -0,0 +1,47 @@ +<!DOCTYPE html> +<!-- NOTE: This reference case uses the same markup as the testcase, except: + (1) This reference case uses modern flexbox CSS instead of -webkit-box. + (2) In the 2nd and 4th containers here (where the testcase makes the + *2nd* flex item abspos), this reference case simply uses no absolute + positioning at all, to produce the correct expected rendering + (with the 2nd flex item being positioned after the 1st, rather than + being superimposed on top of it). +--> +<html> +<head> + <title>Reference: simple positioning of abspos children in -webkit-box</title> + <style> + .container { + border: 1px solid black; + width: 200px; + } + .box { display: flex } + .inline-box { display: inline-flex } + .abs { position: absolute } + .a { border: 3px solid purple } + .b { border: 3px solid orange } +</style> +</head> +<body> + <!-- Test abspos child in -webkit-box: --> + <div class="container box"> + <div class="a abs">aa</div> + <div class="b">bbbb</div> + </div> + <div class="container box"> + <div class="a">aa</div> + <div class="b">bbbb</div> + </div> + + <!-- Test abspos child in -webkit-inline-box: --> + <div class="container inline-box"> + <div class="a abs">aa</div> + <div class="b">bbbb</div> + </div> + <div class="container inline-box"> + <div class="a">aa</div> + <div class="b">bbbb</div> + </div> + +</body> +</html> |