dom/imptests/editing/selecttest/test_isCollapsed.html

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 <!doctype html>
michael@0 2 <title>Selection.isCollapsed tests</title>
michael@0 3 <div id=log></div>
michael@0 4 <script src=/resources/testharness.js></script>
michael@0 5 <script src=/resources/testharnessreport.js></script>
michael@0 6 <script src=common.js></script>
michael@0 7 <script>
michael@0 8 "use strict";
michael@0 9
michael@0 10 test(function() {
michael@0 11 selection.removeAllRanges();
michael@0 12 assert_true(selection.isCollapsed, "isCollapsed must be true if both anchor and focus are null");
michael@0 13 }, "Empty selection");
michael@0 14
michael@0 15 for (var i = 0; i < testRanges.length; i++) {
michael@0 16 test(function() {
michael@0 17 selection.removeAllRanges();
michael@0 18 var endpoints = eval(testRanges[i]);
michael@0 19 var range = ownerDocument(endpoints[0]).createRange();
michael@0 20 range.setStart(endpoints[0], endpoints[1]);
michael@0 21 range.setEnd(endpoints[2], endpoints[3]);
michael@0 22 selection.addRange(range);
michael@0 23
michael@0 24 assert_equals(selection.isCollapsed,
michael@0 25 endpoints[0] === endpoints[2] && endpoints[1] === endpoints[3],
michael@0 26 "Value of isCollapsed");
michael@0 27 }, "Range " + i + " " + testRanges[i]);
michael@0 28 }
michael@0 29
michael@0 30 testDiv.style.display = "none";
michael@0 31 </script>

mercurial