Sign in
webkit
/
WebKit
/
e27614df2f37ba9cd62de8344bb8d5b7377411af
/
.
/
LayoutTests
/
fast
/
html
/
details-remove-summary-4.html
blob: 923fd976ca76aeeaab7da4a367d01c920a0fb9c6 [
file
] [
log
] [
blame
]
<script>
var
runTests
=
function
()
{
document
.
getElementById
(
"dt1"
).
removeChild
(
document
.
getElementById
(
"summary1"
));
};
</script>
<body
onload
=
"
runTests
()
"
>
<details
open
id
=
"dt1"
>
<summary
id
=
"summary1"
>
summary
</summary>
</details>
</body>