15 background-color: blue;
20 background-color: green;
27 <p>Bug
<a href=
"https://bugs.webkit.org/show_bug.cgi?id=105489">105489</a>: Elements must be reattached when inserted/removed from top layer
28 <p>The test passes if you see a green rectangle stacked on top of a blue rectangle.
29 <dialog id=
"bottomDialog"></dialog>
30 <dialog id=
"topDialog"></dialog>
32 document
.getElementById('topDialog').showModal();
33 var bottomDialog
= document
.getElementById('bottomDialog');
34 bottomDialog
.showModal();
35 bottomDialog
.offsetTop
; // force a layout
36 var parent
= bottomDialog
.parentNode
;
37 parent
.removeChild(bottomDialog
);
38 parent
.appendChild(bottomDialog
);