1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/base/test/345339_iframe.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" 1.5 + "http://www.w3.org/TR/REC-html401-19991224/strict.dtd"> 1.6 +<html> 1.7 + <head> 1.8 + <title>Form Elements</title> 1.9 + <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> 1.10 + </head> 1.11 + <body> 1.12 + <p> 1.13 + <select id="select"> 1.14 + <option value="Mozilla">Mozilla</option> 1.15 + <option value="Firefox">Firefox</option> 1.16 + </select> 1.17 + <form name="radioform" id="radioform"> 1.18 + <input type="radio" id="radio1" name="answer" value="Yes" 1.19 + checked="checked" /> 1.20 + <input type="radio" id="radio2" name="answer" value="No" /> 1.21 + </form> 1.22 + 1.23 + <input type="password" id="password" /> 1.24 + 1.25 + <input type="hidden" id="hidden" /> 1.26 + 1.27 + <input type="file" id="file" /> 1.28 + </p> 1.29 + </body> 1.30 +</html>