testElementMethodInsert: add test for non-lowercase position argument
This commit is contained in:
parent
93c43b9437
commit
df33e410b0
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue