dom/tests/mochitest/dom-level2-html/files/input.xhtml

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 <?xml version="1.0" encoding="UTF-8"?>
michael@0 2 <!DOCTYPE html
michael@0 3 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
michael@0 4 "xhtml1-transitional.dtd">
michael@0 5 <html xmlns='http://www.w3.org/1999/xhtml'>
michael@0 6 <head>
michael@0 7 <title>NIST DOM HTML Test - INPUT</title>
michael@0 8 </head>
michael@0 9 <body onload="parent.loadComplete()">
michael@0 10 <table cellpadding="15" border="border" summary="Table 1">
michael@0 11 <tr align="center">
michael@0 12 <td valign="top">Under a FORM control
michael@0 13 <form id="form1" action="./files/getData.pl" method="post">
michael@0 14 <table border="15" summary="Table 2">
michael@0 15 <tr>
michael@0 16 <td>
michael@0 17 <label accesskey="b" for="input1">Enter Your Password:</label>
michael@0 18 </td>
michael@0 19 <td>
michael@0 20 <input dir="ltr" id="input1" tabindex="8" value="Password" type="password" name="Password" size="25" maxlength="5" alt="Password entry" readonly="readonly"/>
michael@0 21 </td>
michael@0 22 </tr>
michael@0 23 <tr>
michael@0 24 <td>
michael@0 25 <input type="radio" name="Radio1" accesskey="c" value="ReHire"/>
michael@0 26 </td>
michael@0 27 </tr>
michael@0 28 <tr>
michael@0 29 <td>
michael@0 30 <input type="radio" name="Radio2" value="NewHire" tabindex="9" checked="checked"/>
michael@0 31 </td>
michael@0 32 </tr>
michael@0 33 <tr>
michael@0 34 <td>Hours available to work</td>
michael@0 35 <td>
michael@0 36 <input type="checkbox" name="Check1" align="bottom" tabindex="10" value="EarlyMornings" checked="checked"/>
michael@0 37 <br/>
michael@0 38 <input id="input5" type="checkbox" name="Check2" tabindex="11" value="AfterNoon" onclick="newId(this)"/>
michael@0 39 <br/>
michael@0 40 <input type="checkbox" name="Check3" tabindex="12" value="Evenings"/>
michael@0 41 <br/>
michael@0 42 <input type="checkbox" name="Check4" tabindex="13" value="Closing" disabled="disabled"/>
michael@0 43 <br/>
michael@0 44 </td>
michael@0 45 </tr>
michael@0 46 <tr>
michael@0 47 <td colspan="2">
michael@0 48 <input type="image" tabindex="14" name="SubmitImage" usemap="#submit-map" src="./pix/submit.gif"/>
michael@0 49 </td>
michael@0 50 </tr>
michael@0 51 <tr>
michael@0 52 <td colspan="2">
michael@0 53 <input title="old_title" type="file" name="FileControl" tabindex="15" accept="GIF,JPEG" onselect="newTitle(this)"/>
michael@0 54 </td>
michael@0 55 </tr>
michael@0 56 </table>
michael@0 57 </form>
michael@0 58 </td>
michael@0 59 </tr>
michael@0 60 </table>
michael@0 61 </body>
michael@0 62 </html>

mercurial