"Fossies" - the Fresh Open Source Software Archive

Member "selenium-selenium-4.9.1/common/src/web/xhtmlTest.html" (8 May 2023, 1944 Bytes) of package /linux/www/selenium-selenium-4.9.1.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) HTML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

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