haikuwebkit/LayoutTests/fast/dom/Text/splitText-expected.txt

19 lines
617 B
Plaintext

Tests the splitText API arguments.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
PASS text.data is "abcdefg"
PASS text.splitText(4).data is "efg"
PASS text.data is "abcd"
PASS text.splitText() threw exception TypeError: Not enough arguments.
PASS text.splitText(999) threw exception IndexSizeError: The index is not in the allowed range..
PASS text.splitText(-1) threw exception IndexSizeError: The index is not in the allowed range..
PASS text.data is "abcd"
PASS text.splitText(-4294967294).data is "cd"
PASS text.data is "ab"
PASS successfullyParsed is true
TEST COMPLETE