1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/editor/reftests/997805.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class="reftest-wait"> 1.6 +<textarea placeholder="placeholder"></textarea> 1.7 +<script> 1.8 +onload = function() { 1.9 + var t = document.querySelector("textarea"); 1.10 + t.style.display = "none"; 1.11 + t.value = "test"; 1.12 + setTimeout(function() { 1.13 + t.style.display = ""; 1.14 + t.value = ""; 1.15 + document.documentElement.className = ""; 1.16 + }, 0); 1.17 +}; 1.18 +</script> 1.19 +</html>