mirror of
https://github.com/servo/servo.git
synced 2025-06-19 06:38:59 +01:00
This only traverses absolute flows, nothing else. + Also, a separate mini-traversal for store overflow. + Store descendants with position 'absolute' and 'fixed' in BaseFlow. + Bubble up links to absolute and fixed descendants during Flow Construction. + Set Rawlink to the CB in absolute descendants. + store_overflow() now uses absolute descendants' overflows too. + Add reftests for 'absolute' and 'fixed' static y position. + Add reftests for overflow (they all fail now). + Put absolute flow display items under their CB's ClipDisplayItem. + Paint borders in Box_ before the actual box stuff (minor fix in lieu of paint-order).
15 lines
199 B
HTML
15 lines
199 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
#first {
|
|
height: 100px;
|
|
width: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="first">
|
|
</div>
|
|
</body>
|
|
</html>
|