blob: df2805b79db581f532f287fab2af92174d1152ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<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>
|