mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-17 08:30:05 +00:00
17 lines
362 B
HTML
17 lines
362 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<textarea placeholder="placeholder"></textarea>
|
|
<script>
|
|
onload = function() {
|
|
var t = document.querySelector("textarea");
|
|
t.style.display = "none";
|
|
t.value = "test";
|
|
setTimeout(function() {
|
|
t.style.display = "";
|
|
t.value = "";
|
|
document.documentElement.className = "";
|
|
}, 0);
|
|
};
|
|
</script>
|
|
</html>
|