Changeset 53

Show
Ignore:
Timestamp:
01/10/08 09:03:22 (11 months ago)
Author:
simon
Message:

fixed a bug in the remove test -- the tabindex wasn't being added back before testing removeAttribute("tabIndex")

Location:
collected/trunk/html-test-cases
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • collected/trunk/html-test-cases/setting-and-removing-tabindex.html

    r51 r53  
    3030        input.removeAttribute("tabindex"); 
    3131        log('removeAttribute("tabindex")' + (hasTabindex(input) ? " no" : " yes")); 
     32        input.tabIndex = 1; 
    3233        input.removeAttribute("tabIndex"); 
    3334        log('removeAttribute("tabIndex")' + (hasTabindex(input) ? " no" : " yes")); 
  • collected/trunk/html-test-cases/setting-and-removing-tabindex.xhtml

    r51 r53  
    3030        input.removeAttribute("tabindex"); 
    3131        log('removeAttribute("tabindex")' + (hasTabindex(input) ? " no" : " yes")); 
     32        input.tabIndex = 1; 
    3233        input.removeAttribute("tabIndex"); 
    3334        log('removeAttribute("tabIndex")' + (hasTabindex(input) ? " no" : " yes"));