1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
<!doctype html>
<title>Selection.setBaseAndExtent() tests</title>
<div id=log></div>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=common.js></script>
<script>
"use strict";
for (var i = 0; i < testRanges.length; i++) {
test(function() {
var data = eval(testRanges[i]);
selection.removeAllRanges();
selection.setBaseAndExtent(data[0], data[1], data[2], data[3]);
if (!document.contains(data[0]) || !document.contains(data[2])) {
assert_equals(selection.rangeCount, 0);
return;
}
assert_equals(selection.rangeCount, 1,
"selection.rangeCount must equal 1");
assert_equals(selection.anchorNode, data[0],
"anchorNode must equal the requested anchor node");
assert_equals(selection.anchorOffset, data[1],
"anchorOffset must equal the requested anchor offset");
assert_equals(selection.focusNode, data[2],
"focusNode must equal the requested focus node");
assert_equals(selection.focusOffset, data[3],
"focusOffset must equal the requested focus offset");
}, "Range " + i + " " + testRanges[i] + " setBaseAndExtent()");
test(function() {
var data = eval(testRanges[i]);
selection.removeAllRanges();
selection.setBaseAndExtent(data[2], data[3], data[0], data[1]);
if (!document.contains(data[0]) || !document.contains(data[2])) {
assert_equals(selection.rangeCount, 0);
return;
}
assert_equals(selection.rangeCount, 1,
"selection.rangeCount must equal 1");
assert_equals(selection.anchorNode, data[2],
"anchorNode must equal the requested focus node");
assert_equals(selection.anchorOffset, data[3],
"anchorOffset must equal the requested focus offset");
assert_equals(selection.focusNode, data[0],
"focusNode must equal the requested anchor node");
assert_equals(selection.focusOffset, data[1],
"focusOffset must equal the requested anchor offset");
}, "Reverse range " + i + " " + testRanges[i] + " setBaseAndExtent()");
}
test(function() {
var title = document.getElementsByTagName('title')[0];
try {
selection.setBaseAndExtent(title, 0, title, 99);
assert_true(false, "focus offset, must throw an IndexSizeError exception")
} catch (e) {
assert_equals(e.name, "IndexSizeError", "focus offset, got an IndexSizeError exception")
}
try {
selection.setBaseAndExtent(title, 99, title, 0);
assert_true(false, "anchor offset, must throw an IndexSizeError exception")
} catch (e) {
assert_equals(e.name, "IndexSizeError", "anchor offset, got an IndexSizeError exception")
}
}, "setBaseAndExtent() with index larger than length");
test(function() {
var title = document.getElementsByTagName('title')[0];
try {
selection.setBaseAndExtent(title, 0, title, -1);
assert_true(false, "focus offset, must throw an IndexSizeError exception")
} catch (e) {
assert_equals(e.name, "IndexSizeError", "focus offset, got an IndexSizeError exception")
}
try {
selection.setBaseAndExtent(title, -1, title, 0);
assert_true(false, "anchor offset, must throw an IndexSizeError exception")
} catch (e) {
assert_equals(e.name, "IndexSizeError", "anchor offset, got an IndexSizeError exception")
}
}, "setBaseAndExtent() with negative index");
test(function() {
var title = document.getElementsByTagName('title')[0];
try {
selection.setBaseAndExtent(title, 0, null, 0);
assert_true(false, "focus node, must throw an TypeError exception")
} catch (e) {
assert_equals(e.name, "TypeError", "focus node, got an TypeError exception")
}
try {
selection.setBaseAndExtent(null, 0, title, 0);
assert_true(false, "anchor node, must throw an TypeError exception")
} catch (e) {
assert_equals(e.name, "TypeError", "anchor node, got an TypeError exception")
}
try {
selection.setBaseAndExtent(null, 0, null, 0);
assert_true(false, "both nodes, must throw an TypeError exception")
} catch (e) {
assert_equals(e.name, "TypeError", "both nodes, got an TypeError exception")
}
}, "setBaseAndExtent() with null nodes");
test(function() {
var title = document.getElementsByTagName('title')[0];
try {
selection.setBaseAndExtent(title, 0, title);
assert_true(false, "focus offset, must throw an TypeError exception")
} catch (e) {
assert_equals(e.name, "TypeError", "focus offset, got an TypeError exception")
}
try {
selection.setBaseAndExtent(title, 0);
assert_true(false, "focus node, must throw an TypeError exception")
} catch (e) {
assert_equals(e.name, "TypeError", "focus node, got an TypeError exception")
}
try {
selection.setBaseAndExtent(title);
assert_true(false, "anchor offset, must throw an TypeError exception")
} catch (e) {
assert_equals(e.name, "TypeError", "anchor offset, got an TypeError exception")
}
}, "setBaseAndExtent() with too few params");
testDiv.style.display = "none";
</script>
|