summaryrefslogtreecommitdiffstats
path: root/editor/reftests/997805.html
blob: 91750138b3c7fb3d8ad558fbb334ab2ed7a2dd74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>