blob: 4fe3f363eb436dc44b290a95e0a0da4d11565855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html id="a">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1674011">
<style>
:not(animateTransform) { columns: 1px }
</style>
<script>
function go() {
a.appendChild(b)
}
function eh() {
a.appendChild(c)
}
</script>
<body onload=go()>
<data id="b">x</command>
<dir style="column-span: all">x</dir>
<details id="c" ontoggle="eh()" open="">x</details>
<iframe align="right">x</iframe>
|