blob: d132d041bcc4ab3ec3b873abbbe5f6dbc67cf56c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<script>
var runTests = function () {
document.getElementById("dt1").removeChild(document.getElementById("summary2"));
};
</script>
<body onload="runTests()">
<details open id="dt1">
<summary id="summary1">summary 1</summary>
<summary id="summary2">summary 2</summary>
</details>
</body>
|