blob: 91aaa9c50004e0bb4c855791cf84aad542b9ef31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html class="test-wait">
<body onload="start()">
<script>
function start() {
requestAnimationFrame(() => {
target2.placeholder = "string";
target1.type = "hidden";
document.documentElement.className = '';
});
}
</script>
<ol id=target1 inert>
<content>
<textarea id=target2></textarea>
<semantics>
<optgroup></optgroup>
</semantics>
</content>
</ol>
</body>
</html>
|