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