2 <!-- Any copyright is dedicated to the Public Domain.
3 - http://creativecommons.org/publicdomain/zero/1.0/ -->
5 <html class=
"reftest-wait">
8 var details1
= document
.getElementById("details1");
9 var summary2
= document
.getElementById("summary2");
11 details1
.insertBefore(summary2
, details1
.children
[0]);
13 document
.documentElement
.removeAttribute("class");
16 <body onload=
"runTest();">
17 <details id=
"details1">
18 <summary>Summary
1</summary>
19 <p>This is the details
1.
</p>
22 <summary id=
"summary2" style=
"position: absolute;">Summary
2</summary>
23 <p>This is the details
2.
</p>