3 <style type=
"text/css">
8 background-color: lightgreen
;
16 This tests for a regression against
17 <i><a href=
"https://bugs.webkit.org/show_bug.cgi?id=6881">http://bugzilla.opendarwin.org/show_bug.cgi?id=
6881</a>
18 Block with position:absolute bottom:
0 doesn't always move when height of containing block changes (affects Safari RSS)
</i>.
21 The squares below should have blue tops and green bottoms, not the other way around.
24 <div style=
"position: relative;">
25 <div class=articlefooter
></div>
26 <div id=
"t" style=
"background: skyblue; height: 50px; width: 100px;"></div>
29 <div style=
"position: relative; display: -webkit-box;">
30 <div class=articlefooter
></div>
31 <div id=
"u" style=
"background: skyblue; height: 50px; width: 100px;"></div>
33 <script type=
"text/javascript">
34 document
.body
.offsetTop
; // force layout
35 t
.style
.height
= '100px';
36 u
.style
.height
= '100px';