Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<style>
*|*:nth-child(+0n of S) { color: red }
</style>
<script>
document.addEventListener("DOMContentLoaded", () => {
let a = document.createElementNS("http://www.w3.org/1999/xhtml", "details")
let b = document.createElementNS("http://www.w3.org/1999/xhtml", "summary")
a.appendChild(b)
document.documentElement.appendChild(a)
b.offsetTop;
b.setAttributeNS("h", "class", "")
})
</script>