1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/forms/crashtests/258101-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 1.5 +<html> 1.6 +<head> 1.7 + <meta content="text/html; charset=ISO-8859-1" 1.8 + http-equiv="content-type"> 1.9 + <title>Crash Testcase</title> 1.10 + <script type="text/javascript"> 1.11 +function crash() 1.12 +{ 1.13 + var inp = document.getElementById("theinp"); 1.14 + inp.type = "file"; 1.15 +} 1.16 + </script> 1.17 +</head> 1.18 +<body onload="crash();"> 1.19 +<input id="theinp" type="text"> 1.20 +</body> 1.21 +</html>