1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-invalid/default-style/textarea.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,14 @@ 1.4 +<!DOCTYPE> 1.5 +<html class="reftest-wait"> 1.6 + <link rel='stylesheet' type='text/css' href='style.css'> 1.7 + <script> 1.8 + function onloadHandler() 1.9 + { 1.10 + document.getElementById('e').setCustomValidity('foo'); 1.11 + document.documentElement.className=''; 1.12 + } 1.13 + </script> 1.14 + <body onload="onloadHandler();"> 1.15 + <textarea id='e'></textarea> 1.16 + </body> 1.17 +</html>