blob: 2c2e48d6b6cf83439e1956734d20397a57cfb690 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<input type="text" value="blahblahblah" spellcheck="true">
<script>
var i = document.getElementsByTagName("input")[0];
i.focus(); // init the editor
i.blur(); // we actually don't need the focus
// Try to ensure the input element is repainted.
let rAFCounter = 0;
requestIdleCallback(function rAF() {
if (rAFCounter < 10) {
++rAFCounter;
requestAnimationFrame(rAF);
} else {
document.documentElement.removeAttribute("class");
}
});
</script>
</body>
</html>
|