mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 00:17:32 +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
47
layout/reftests/bugs/860242-1.html
Normal file
47
layout/reftests/bugs/860242-1.html
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
.table {
|
||||
display: table;
|
||||
width: 100px;
|
||||
table-layout: fixed;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.table > * {
|
||||
box-sizing: border-box;
|
||||
display: table-cell;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.withPadding { padding: 10px; }
|
||||
.withBorder { border: 2px solid black; }
|
||||
|
||||
.thin { width: 25%; }
|
||||
.wide { width: 75%; }
|
||||
|
||||
.teal { background: teal; }
|
||||
.purple { background: purple; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="table">
|
||||
<div class="thin teal"></div>
|
||||
<div class="wide purple"></div>
|
||||
</div>
|
||||
<div class="table">
|
||||
<div class="thin withPadding teal"></div>
|
||||
<div class="wide withPadding purple"></div>
|
||||
</div>
|
||||
<div class="table">
|
||||
<div class="thin withBorder teal"></div>
|
||||
<div class="wide withBorder purple"></div>
|
||||
</div>
|
||||
<div class="table">
|
||||
<div class="thin withBorder withPadding teal"></div>
|
||||
<div class="wide withBorder withPadding purple"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue