dom/tests/mochitest/dom-level2-html/files/collection.xml

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 - BR</title>
michael@0 8 </head>
michael@0 9 <body onload="parent.loadComplete()">
michael@0 10 <table id="table-1" border="4" frame="border" cellpadding="2" cellspacing="2" summary="HTML Control Table" rules="all">
michael@0 11 <caption>Table Caption</caption>
michael@0 12 <thead align="center" valign="middle">
michael@0 13 <tr align="center" valign="middle" char="*" charoff="1">
michael@0 14 <th id="header-1">Employee Id</th>
michael@0 15 <th id="header-2" abbr="maiden" axis="center" align="center" colspan="1" rowspan="1" scope="col" headers="header-1" valign="middle">Employee Name</th>
michael@0 16 <th>Position</th>
michael@0 17 <th>Salary</th>
michael@0 18 <th>Gender</th>
michael@0 19 <th>Address</th>
michael@0 20 </tr>
michael@0 21 </thead>
michael@0 22 <tfoot align="center" valign="middle">
michael@0 23 <tr>
michael@0 24 <th>next page ...</th>
michael@0 25 <th>next page ...</th>
michael@0 26 <th>next page ...</th>
michael@0 27 <th>next page ...</th>
michael@0 28 <th>next page ...</th>
michael@0 29 <th>next page ...</th>
michael@0 30 </tr>
michael@0 31 </tfoot>
michael@0 32 <tbody align="center" valign="middle">
michael@0 33 <tr>
michael@0 34 <td axis="center" id="Table-3" abbr="maiden2" colspan="1" rowspan="1" scope="col" headers="header-2" valign="middle">EMP0001</td>
michael@0 35 <td headers="header-2">Margaret Martin</td>
michael@0 36 <td>Accountant</td>
michael@0 37 <td>56,000</td>
michael@0 38 <td>Female</td>
michael@0 39 <td>1230 North Ave. Dallas, Texas 98551</td>
michael@0 40 </tr>
michael@0 41 <tr>
michael@0 42 <td>EMP0002</td>
michael@0 43 <td>Martha Raynolds</td>
michael@0 44 <td>Secretary</td>
michael@0 45 <td>35,000</td>
michael@0 46 <td>Female</td>
michael@0 47 <td>1900 Dallas Road Dallas, Texas 98554</td>
michael@0 48 </tr>
michael@0 49 </tbody>
michael@0 50 </table>
michael@0 51 <form id="form1" action="./files/getData.pl" method="post">
michael@0 52 <p>
michael@0 53 <select id="selectId" dir="ltr" tabindex="7" name="select1" multiple="multiple" size="1">
michael@0 54 <option selected="selected" value="EMP1">EMP10001</option>
michael@0 55 <option>EMP10002</option>
michael@0 56 <option>EMP10003</option>
michael@0 57 <option>EMP10004</option>
michael@0 58 <option>EMP10005</option>
michael@0 59 </select>
michael@0 60 </p>
michael@0 61 </form>
michael@0 62 <p>
michael@0 63 <select name="select2">
michael@0 64 <option>EMP20001</option>
michael@0 65 <option>EMP20002</option>
michael@0 66 <option>EMP20003</option>
michael@0 67 <option>EMP20004</option>
michael@0 68 <option>EMP20005</option>
michael@0 69 </select>
michael@0 70 </p>
michael@0 71 <p>
michael@0 72 <select name="select3" disabled="disabled" tabindex="1">
michael@0 73 <option>EMP30001</option>
michael@0 74 <option>EMP30002</option>
michael@0 75 <option>EMP30003</option>
michael@0 76 <option>EMP30004</option>
michael@0 77 <option>EMP30005</option>
michael@0 78 </select>
michael@0 79 </p>
michael@0 80 </body>
michael@0 81 </html>
michael@0 82

mercurial