tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

xhtmlTest.html (2138B)


      1 <?xml version="1.0"?>
      2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      3  <!-- This Source Code Form is subject to the terms of the Mozilla Public
      4     - License, v. 2.0. If a copy of the MPL was not distributed with this
      5        - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      6 <head>
      7    <title>XHTML Test Page</title>
      8 </head>
      9 <body>
     10 <div class="navigation">
     11    <p><a href="resultPage.html" target="result" name="windowOne">Open new window</a></p>
     12    <p><a href="iframes.html" target="_blank" name="windowTwo">Create a new anonymous window</a></p>
     13    <p><a href="test_iframe.html" name="sameWindow">Open page with iframes in same window</a></p>
     14    <p><a href="test.html" target="result" name="windowThree">Open a window with a close button</a></p>
     15 </div>
     16 
     17 <a name="notext"><b></b></a>
     18 
     19 <div class="content">
     20    <h1 class="header">XHTML Might Be The Future</h1>
     21 
     22    <p>If you'd like to go elsewhere then <a href="resultPage.html">click me</a>.</p>
     23 
     24    <p>Alternatively, <a href="resultPage.html" id="linkId">this goes to the same place</a>.</p>
     25 
     26    <form name="someForm">
     27        <input id="username" type="text" value="change"/>
     28    </form>
     29 
     30    This link has the same text as another link: <a href="resultPage.html">click me</a>.
     31 </div>
     32 
     33 <div class="extraDiv">Another div starts here.<p/>
     34    <h2 class="nameA nameBnoise   nameC">An H2 title</h2>
     35    <p class="nameC">Some more text</p>
     36 </div>
     37 
     38 <div>
     39  <a id="id1" href="#">Foo</a>
     40  <ul id="id2" />
     41  <span id="id3"/>
     42 </div>
     43 
     44 <div>
     45  <table id="table" ></table>
     46 </div>
     47 
     48 <span id="amazing">
     49 <div>
     50    <div>
     51        <div>
     52            <span/>
     53            <a>I have width</a>
     54        </div>
     55    </div>
     56 </div>
     57 </span>
     58 
     59 <a name="text" />
     60 <p id="spaces">     </p>
     61 <p id="empty"></p>
     62 <a href="foo" id="linkWithEqualsSign">Link=equalssign</a>
     63 
     64 <p class=" spaceAround ">Spaced out</p>
     65 
     66 <span id="my_span">
     67  <div>first_div</div>
     68  <div>second_div</div>
     69  <span>first_span</span>
     70  <span>second_span</span>
     71 </span>
     72 
     73 <div id="parent">I'm a parent
     74  <div id="child">I'm a child</div>
     75 </div>
     76 
     77 <div id="only-exists-on-xhtmltest">Woo woo</div>
     78 </body>
     79 </html>