mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 07:48:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
45
testing/web-platform/tests/selection/removeAllRanges.html
Normal file
45
testing/web-platform/tests/selection/removeAllRanges.html
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<!doctype html>
|
||||
<title>Selection.removeAllRanges() 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";
|
||||
|
||||
// Also test a selection with no ranges
|
||||
testRanges.unshift("[]");
|
||||
|
||||
var range = rangeFromEndpoints([paras[0].firstChild, 0, paras[0].firstChild, 1]);
|
||||
|
||||
for (var i = 0; i < testRanges.length; i++) {
|
||||
test(function() {
|
||||
setSelectionForwards(eval(testRanges[i]));
|
||||
selection.removeAllRanges();
|
||||
assert_equals(selection.rangeCount, 0,
|
||||
"After removeAllRanges(), rangeCount must be 0");
|
||||
// Test that it's forwards
|
||||
selection.addRange(range);
|
||||
assert_equals(selection.anchorOffset, selection.getRangeAt(0).startOffset,
|
||||
"After removeAllRanges(), addRange() must be forwards, so anchorOffset must equal startOffset rather than endOffset");
|
||||
assert_equals(selection.focusOffset, selection.getRangeAt(0).endOffset,
|
||||
"After removeAllRanges(), addRange() must be forwards, so focusOffset must equal endOffset rather than startOffset");
|
||||
}, "Range " + i + " " + testRanges[i] + " forwards");
|
||||
|
||||
// Copy-pasted from above
|
||||
test(function() {
|
||||
setSelectionBackwards(eval(testRanges[i]));
|
||||
selection.removeAllRanges();
|
||||
assert_equals(selection.rangeCount, 0,
|
||||
"After removeAllRanges(), rangeCount must be 0");
|
||||
// Test that it's forwards
|
||||
selection.addRange(range);
|
||||
assert_equals(selection.anchorOffset, selection.getRangeAt(0).startOffset,
|
||||
"After removeAllRanges(), addRange() must be forwards, so anchorOffset must equal startOffset rather than endOffset");
|
||||
assert_equals(selection.focusOffset, selection.getRangeAt(0).endOffset,
|
||||
"After removeAllRanges(), addRange() must be forwards, so focusOffset must equal endOffset rather than startOffset");
|
||||
}, "Range " + i + " " + testRanges[i] + " backwards");
|
||||
}
|
||||
|
||||
testDiv.style.display = "none";
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue