зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
362 B
HTML
17 строки
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>
|