1
0
Fork 0
firefox/editor/reftests/spellcheck-input-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
619 B
HTML

<!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>