mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update sync process
This commit is contained in:
parent
cc428aac1d
commit
504384e83d
109 changed files with 553 additions and 289 deletions
|
@ -87,6 +87,18 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|||
var finalHeight = autogrow.offsetHeight
|
||||
assert.isTrue(finalHeight < initialHeight);
|
||||
});
|
||||
|
||||
test('textarea selection works', function() {
|
||||
var autogrow = fixture('basic');
|
||||
var textarea = autogrow.textarea;
|
||||
autogrow.bindValue = 'batman\nand\nrobin';
|
||||
|
||||
autogrow.selectionStart = 3;
|
||||
autogrow.selectionEnd = 5;
|
||||
|
||||
assert.equal(textarea.selectionStart, 3);
|
||||
assert.equal(textarea.selectionEnd, 5);
|
||||
});
|
||||
});
|
||||
|
||||
suite('focus/blur events', function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue