testElementMethodInsert: add test for non-lowercase position argument

This commit is contained in:
Thomas Fuchs 2007-05-12 19:12:04 +00:00
parent 93c43b9437
commit df33e410b0
1 changed files with 3 additions and 0 deletions

View File

@ -435,6 +435,9 @@
$('element-insertions-main').insert('some more text at the bottom');
assert(getInnerHTML('element-insertions-main').endsWith('some more text at the bottom'));
$('element-insertions-main').insert('some text uppercase top', 'TOP');
assert(getInnerHTML('element-insertions-main').startsWith('some text uppercase top'));
}},
testInsertionBackwardsCompatibility: function() {with(this) {