Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>Traversal Rule test document</title> |
michael@0 | 5 | <meta charset="utf-8" /> |
michael@0 | 6 | </head> |
michael@0 | 7 | <body> |
michael@0 | 8 | <h3 id="heading-1">A small first heading</h3> |
michael@0 | 9 | <form> |
michael@0 | 10 | <label for="input-1-1">Name:</label> |
michael@0 | 11 | <input id="input-1-1"> |
michael@0 | 12 | <label id="label-1-2">Favourite Ice Cream Flavour:<input id="input-1-2"></label> |
michael@0 | 13 | <button id="button-1-1">Magic Button</button> |
michael@0 | 14 | <label for="radio-1-1">Radios are old: </label> |
michael@0 | 15 | <input id="radio-1-1" type="radio"> |
michael@0 | 16 | <label for="radio-1-2">Radios are new: </label> |
michael@0 | 17 | <input id="radio-1-2" type="radio"> |
michael@0 | 18 | <label for="input-1-3">Password:</label> |
michael@0 | 19 | <input id="input-1-3" type="password"> |
michael@0 | 20 | <label for="input-1-4">Unlucky number:</label> |
michael@0 | 21 | <input id="input-1-4" type="tel"> |
michael@0 | 22 | <input id="button-1-2" type="button" value="Fun"> |
michael@0 | 23 | <label for="checkbox-1-1">Check me: </label> |
michael@0 | 24 | <input id="checkbox-1-1" type="checkbox"> |
michael@0 | 25 | <select id="select-1-1"> |
michael@0 | 26 | <option>Value 1</option> |
michael@0 | 27 | <option>Value 2</option> |
michael@0 | 28 | <option>Value 3</option> |
michael@0 | 29 | </select> |
michael@0 | 30 | <select id="select-1-2" multiple="true"> |
michael@0 | 31 | <option>Value 1</option> |
michael@0 | 32 | <option>Value 2</option> |
michael@0 | 33 | <option>Value 3</option> |
michael@0 | 34 | </select> |
michael@0 | 35 | <label for="checkbox-1-2">Check me too: </label> |
michael@0 | 36 | <input id="checkbox-1-2" type="checkbox"> |
michael@0 | 37 | <label for="checkbox-1-3">But not me: </label> |
michael@0 | 38 | <input id="checkbox-1-3" type="checkbox" aria-hidden="true"> |
michael@0 | 39 | <label for="checkbox-1-4">Or me! </label> |
michael@0 | 40 | <input id="checkbox-1-3" type="checkbox" style="visibility:hidden"> |
michael@0 | 41 | <select id="select-1-3" size="3"> |
michael@0 | 42 | <option>Value 1</option> |
michael@0 | 43 | <option>Value 2</option> |
michael@0 | 44 | <option>Value 3</option> |
michael@0 | 45 | </select> |
michael@0 | 46 | <label for="input-1-5">Electronic mailing address:</label> |
michael@0 | 47 | <input id="input-1-5" type="email"> |
michael@0 | 48 | <input id="button-1-3" type="submit" value="Submit"> |
michael@0 | 49 | |
michael@0 | 50 | </form> |
michael@0 | 51 | <h2 id="heading-2">A larger second</h2> |
michael@0 | 52 | <div id="heading-3" role="heading">ARIA is fun</div> |
michael@0 | 53 | <input id="button-2-1" type="button" value="More Fun"> |
michael@0 | 54 | <div id="button-2-2" tabindex="0" role="button">ARIA fun</div> |
michael@0 | 55 | <div id="button-2-3" tabindex="0" role="button" aria-pressed="false">My little togglebutton</div> |
michael@0 | 56 | <div id="button-2-4" tabindex="0" role="spinbutton">ARIA fun</div> |
michael@0 | 57 | <h1 id="heading-4" style="display:none">Invisible header</h1> |
michael@0 | 58 | <dl id="list-1"> |
michael@0 | 59 | <dt id="listitem-1-1">Programming Language</dt> |
michael@0 | 60 | <dd>A esoteric weapon wielded by only the most formidable warriors, |
michael@0 | 61 | for its unrelenting strict power is unfathomable.</dd> |
michael@0 | 62 | </dl> |
michael@0 | 63 | <ul id="list-2"> |
michael@0 | 64 | <li id="listitem-2-1">Lists of Programming Languages</li> |
michael@0 | 65 | <li id="listitem-2-2">Lisp |
michael@0 | 66 | <ol id="list-3"> |
michael@0 | 67 | <li id="listitem-3-1">Scheme</li> |
michael@0 | 68 | <li id="listitem-3-2">Racket</li> |
michael@0 | 69 | <li id="listitem-3-3">Clojure</li> |
michael@0 | 70 | </ol> |
michael@0 | 71 | </li> |
michael@0 | 72 | <li id="listitem-2-3">JavaScript</li> |
michael@0 | 73 | </ul> |
michael@0 | 74 | <h6 id="heading-5">The last (visible) one!</h6> |
michael@0 | 75 | <img id="image-1" src="http://example.com" alt=""> |
michael@0 | 76 | <img id="image-2" src="../moz.png" alt="stuff"> |
michael@0 | 77 | <div id="image-3" tabindex="0" role="img">Not actually an image</div> |
michael@0 | 78 | <h4 id="heading-6" aria-hidden="true">Hidden header</h4> |
michael@0 | 79 | <a id="link-1" href="http://www.mozilla.org">Link</a> |
michael@0 | 80 | <a id="anchor-1">Words</a> |
michael@0 | 81 | <a id="link-2" href="http://www.mozilla.org">Link the second</a> |
michael@0 | 82 | <a id="anchor-2">Sentences</a> |
michael@0 | 83 | <a id="link-3" href="http://www.example.com">Link the third</a> |
michael@0 | 84 | <hr id="separator-1"> |
michael@0 | 85 | <h6 id="heading-6"></h6> |
michael@0 | 86 | <table id="table-1"> |
michael@0 | 87 | <tr> |
michael@0 | 88 | <td>3</td> |
michael@0 | 89 | <td>1</td> |
michael@0 | 90 | </tr> |
michael@0 | 91 | <tr> |
michael@0 | 92 | <td>4</td> |
michael@0 | 93 | <td>1</td> |
michael@0 | 94 | </tr> |
michael@0 | 95 | </table> |
michael@0 | 96 | <div id="separator-2" role="separator">Just an innocuous separator</div> |
michael@0 | 97 | <table id="table-2"> |
michael@0 | 98 | <thead> |
michael@0 | 99 | <tr> |
michael@0 | 100 | <th>Dirty Words</th> |
michael@0 | 101 | <th>Meaning</th> |
michael@0 | 102 | </tr> |
michael@0 | 103 | </thead> |
michael@0 | 104 | <tfoot> |
michael@0 | 105 | <tr> |
michael@0 | 106 | <td>Mud</td> |
michael@0 | 107 | <td>Wet Dirt</td> |
michael@0 | 108 | </tr> |
michael@0 | 109 | </tfoot> |
michael@0 | 110 | <tbody> |
michael@0 | 111 | <tr> |
michael@0 | 112 | <td>Dirt</td> |
michael@0 | 113 | <td>Messy Stuff</td> |
michael@0 | 114 | </tr> |
michael@0 | 115 | </tbody> |
michael@0 | 116 | </table> |
michael@0 | 117 | </body> |
michael@0 | 118 | </html> |