Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /selection/crashtests/selection-deleteFromDocument-starting-from-details-ends-in-data.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
addEventListener("DOMContentLoaded", () => {
getSelection().setBaseAndExtent(
document.querySelector("data"), 1,
document.querySelector("details"), 0
);
getSelection().deleteFromDocument();
document.querySelector("details").appendChild(
document.querySelector("summary")
);
});
</script>
</head>
<body>
<details>
</details>
<data>a</data>
<summary>
</summary></body></html>