embedding/test/bug293834_form.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <!DOCTYPE html>
     3 <html>
     4     <head>
     5         <title>Nested iframe for bug 293834</title>
     6         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     7     </head>
     8     <body>
     9     <form>
    10         not prefilled: <input id="a-text"  type="text"></input><br>
    11         prefilled: <input id="a-prefilled-text"  type="text" value="prefill "></input><br>
    13         <input name="a-radio" id="radioa" value="radio-a" type="radio">Should be saved checked</input><br>
    14         <input name="a-radio" value="radio-c" type="radio" checked="true">Initially checked</input><br>
    15         <select id="aselect">
    16             <option value="target">Should be saved selected</option>
    17             <option value="default" selected="selected">Default Selected</option>
    18         </select><br>
    19         not prefilled: <textarea id="a-textbox"></textarea><br>
    20         prefilled: <textarea id="a-prefilled-textbox">prefill </textarea><br>
    21         <input id="a-checkbox" type="checkbox">Should be saved checked</input><br>
    22         <input id="a-prefilled-checkbox" type="checkbox" checked="true">Initiallly checked</input><br>
    23     </form>
    24     </body>
    25 </html>

mercurial