mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
30
layout/reftests/box/flexbox-abspos-container-1a.html
Normal file
30
layout/reftests/box/flexbox-abspos-container-1a.html
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<!-- Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ -->
|
||||
<!-- This testcase has a relatively-positioned -moz-box element, which should
|
||||
form a containing block for its absolutely positioned child. -->
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
.box { display: -moz-box }
|
||||
.relpos_parent {
|
||||
position: relative;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background: lightblue;
|
||||
}
|
||||
.abspos_child {
|
||||
position: absolute;
|
||||
left: 30px;
|
||||
bottom: 10px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background: purple;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="box relpos_parent">
|
||||
<div class="abspos_child"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue