Changeset 36 for collected/trunk

Show
Ignore:
Timestamp:
12/14/07 17:53:17 (13 months ago)
Author:
simon
Message:

Labeled the test elements with values so that they can be seen, and differentiated, when looking at the page in a browser

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • collected/trunk/html-test-cases/getting-tabindex.html

    r33 r36  
    109109<pre id="source" style="display:none"></pre> 
    110110<hr> 
    111 <div id="div-no-tabindex"></div> 
    112 <div id="div-tabindex-1" tabindex="1"></div> 
    113 <div id="div-tabindex-removed" tabindex="1"></div> 
     111<div id="div-no-tabindex">div with no tabindex</div> 
     112<div id="div-tabindex-1" tabindex="1">div with tabindex="1"</div> 
     113<div id="div-tabindex-removed" tabindex="1">div with tabindex removed</div> 
    114114<div> 
    115 <input id="input-no-tabindex"> 
    116 <input id="input-tabindex-1" tabindex="1"> 
    117 <input id="input-tabindex-removed" tabindex="1"> 
     115<input id="input-no-tabindex" value="input with no tabindex"> 
     116<input id="input-tabindex-1" tabindex="1" value='input with tabindex="1"'> 
     117<input id="input-tabindex-removed" tabindex="1" value="input with tabindex removed"> 
    118118</div> 
    119119</body>