1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/embedding/test/bug293834_form.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<!DOCTYPE html> 1.5 + 1.6 +<html> 1.7 + <head> 1.8 + <title>Nested iframe for bug 293834</title> 1.9 + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 1.10 + </head> 1.11 + <body> 1.12 + <form> 1.13 + not prefilled: <input id="a-text" type="text"></input><br> 1.14 + prefilled: <input id="a-prefilled-text" type="text" value="prefill "></input><br> 1.15 + 1.16 + <input name="a-radio" id="radioa" value="radio-a" type="radio">Should be saved checked</input><br> 1.17 + <input name="a-radio" value="radio-c" type="radio" checked="true">Initially checked</input><br> 1.18 + <select id="aselect"> 1.19 + <option value="target">Should be saved selected</option> 1.20 + <option value="default" selected="selected">Default Selected</option> 1.21 + </select><br> 1.22 + not prefilled: <textarea id="a-textbox"></textarea><br> 1.23 + prefilled: <textarea id="a-prefilled-textbox">prefill </textarea><br> 1.24 + <input id="a-checkbox" type="checkbox">Should be saved checked</input><br> 1.25 + <input id="a-prefilled-checkbox" type="checkbox" checked="true">Initiallly checked</input><br> 1.26 + </form> 1.27 + </body> 1.28 +</html> 1.29 +