summaryrefslogtreecommitdiffstats
path: root/editor/reftests/997805.html
diff options
context:
space:
mode:
Diffstat (limited to 'editor/reftests/997805.html')
-rw-r--r--editor/reftests/997805.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/editor/reftests/997805.html b/editor/reftests/997805.html
new file mode 100644
index 0000000000..91750138b3
--- /dev/null
+++ b/editor/reftests/997805.html
@@ -0,0 +1,16 @@
+<!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>