Skip to content

Commit

Permalink
Move Microsoft's addRange.html to the test suite.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger committed Oct 4, 2017
1 parent 1331a04 commit f84d530
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 72 deletions.
72 changes: 0 additions & 72 deletions old-tests/submission/Microsoft/selection/addRange.htm

This file was deleted.

29 changes: 29 additions & 0 deletions selection/addRange.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE HTML>
<meta charset=utf-8>
<title>Selection: Add a range to the selection</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
window.onload = function() {
test(function() {
var selection = window.getSelection();
var p1 = document.getElementById("p1");

var range = document.createRange();
range.selectNode(p1);
selection.addRange(range);

assert_equals(selection.anchorNode, range.startContainer);
assert_equals(selection.anchorOffset, range.startOffset);
assert_equals(selection.focusNode, range.endContainer);
assert_equals(selection.focusOffset, range.endOffset);
assert_equals(selection.isCollapsed, range.collapsed);
assert_equals(selection.rangeCount, 1);
assert_equals(selection.toString(), p1.firstChild.nodeValue);
});
};
</script>
<div id=log></div>
<p id="p1">Add a range to the selection</p>
</body>
</html>

0 comments on commit f84d530

Please sign in to comment.