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

Added a div and an input with tabindex="-1".

Files:
1 modified

Legend:

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

    r37 r39  
    104104        logger.logTabindex("div-no-tabindex", "div with no tabindex"); 
    105105        logger.logTabindex("div-tabindex-1", 'div with tabindex="1"'); 
     106        logger.logTabindex("div-tabindex-minus-1", 'div with tabindex="-1"'); 
    106107        logger.logTabindex("div-tabindex-removed", "div with tabindex removed"); 
    107108        logger.logTabindex("input-no-tabindex", "input with no tabindex"); 
    108109        logger.logTabindex("input-tabindex-1", 'input with tabindex="1"'); 
     110        logger.logTabindex("input-tabindex-minus-1", 'input with tabindex="-1"'); 
    109111        logger.logTabindex("input-tabindex-removed", "input with tabindex removed"); 
    110112        document.getElementById("log").innerHTML = logger.getHTML(); 
     
    126128<div id="div-no-tabindex">div with no tabindex</div> 
    127129<div id="div-tabindex-1" tabindex="1">div with tabindex="1"</div> 
     130<div id="div-tabindex-minus-1" tabindex="-1">div with tabindex="-1"</div> 
    128131<div id="div-tabindex-removed" tabindex="1">div with tabindex removed</div> 
    129132<div> 
    130133<input id="input-no-tabindex" value="input with no tabindex"> 
    131134<input id="input-tabindex-1" tabindex="1" value='input with tabindex="1"'> 
     135<input id="input-tabindex-minus-1" tabindex="-1" value='input with tabindex="-1"'> 
    132136<input id="input-tabindex-removed" tabindex="1" value="input with tabindex removed"> 
    133137</div>