mirror of
https://github.com/jlengrand/webcomponentsjs.git
synced 2026-05-10 15:56:07 +00:00
71 lines
2.0 KiB
JavaScript
71 lines
2.0 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
|
|
* This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
* The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
* The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
* Code distributed by Google as part of the polymer project is also
|
|
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
*/
|
|
|
|
suite('Text', function() {
|
|
|
|
test('instanceof', function() {
|
|
var div = document.createElement('div');
|
|
div.textContent = 'abc';
|
|
assert.instanceOf(div.firstChild, Text);
|
|
});
|
|
|
|
test('constructor', function() {
|
|
var div = document.createElement('div');
|
|
div.textContent = 'abc';
|
|
assert.equal(Text, div.firstChild.constructor);
|
|
});
|
|
|
|
test('splitText', function() {
|
|
var t = document.createTextNode('abcd');
|
|
var t2 = t.splitText(3);
|
|
assert.equal(t.data, 'abc');
|
|
assert.equal(t2.data, 'd');
|
|
|
|
t = document.createTextNode('abcd');
|
|
t2 = t.splitText(0);
|
|
assert.equal(t.data, '');
|
|
assert.equal(t2.data, 'abcd');
|
|
|
|
t = document.createTextNode('abcd');
|
|
t2 = t.splitText(4);
|
|
assert.equal(t.data, 'abcd');
|
|
assert.equal(t2.data, '');
|
|
});
|
|
|
|
test('splitText with too large offset', function() {
|
|
var t = document.createTextNode('abcd');
|
|
assert.throws(function() {
|
|
t.splitText(5);
|
|
});
|
|
});
|
|
|
|
test('splitText negative offset', function() {
|
|
var t = document.createTextNode('abcd');
|
|
assert.throws(function() {
|
|
t.splitText(-1);
|
|
});
|
|
});
|
|
|
|
test('splitText siblings', function() {
|
|
var div = document.createElement('div');
|
|
div.innerHTML = 'abcd<b></b>';
|
|
var t = div.firstChild;
|
|
var b = div.lastChild;
|
|
|
|
var t2 = t.splitText(3);
|
|
assert.equal(t.data, 'abc');
|
|
assert.equal(t2.data, 'd');
|
|
|
|
assert.equal(t.nextSibling, t2);
|
|
assert.equal(t2.nextSibling, b);
|
|
});
|
|
|
|
});
|