Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 6728

Show
Ignore:
Timestamp:
05/12/07 19:12:04 (1 year ago)
Author:
madrobby
Message:

testElementMethodInsert: add test for non-lowercase position argument

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/prototype/trunk/test/unit/dom.html

    r6725 r6728  
    436436      $('element-insertions-main').insert('some more text at the bottom'); 
    437437      assert(getInnerHTML('element-insertions-main').endsWith('some more text at the bottom')); 
     438       
     439      $('element-insertions-main').insert('some text uppercase top', 'TOP'); 
     440      assert(getInnerHTML('element-insertions-main').startsWith('some text uppercase top')); 
    438441    }}, 
    439442