mirror of
https://github.com/servo/servo.git
synced 2025-06-25 01:24:37 +01:00
47 lines
1.8 KiB
HTML
47 lines
1.8 KiB
HTML
<!doctype html>
|
|
<title>Selection interface tests</title>
|
|
<div id=log></div>
|
|
<script src=/resources/testharness.js></script>
|
|
<script src=/resources/testharnessreport.js></script>
|
|
<script src=/resources/WebIDLParser.js></script>
|
|
<script src=/resources/idlharness.js></script>
|
|
<script type=text/plain>
|
|
// https://www.w3.org/TR/2016/WD-selection-api-20161206/
|
|
interface Selection {
|
|
readonly attribute Node? anchorNode;
|
|
readonly attribute unsigned long anchorOffset;
|
|
readonly attribute Node? focusNode;
|
|
readonly attribute unsigned long focusOffset;
|
|
readonly attribute boolean isCollapsed;
|
|
readonly attribute unsigned long rangeCount;
|
|
readonly attribute DOMString type;
|
|
Range getRangeAt(unsigned long index);
|
|
void addRange(Range range);
|
|
void removeRange(Range range);
|
|
void removeAllRanges();
|
|
void empty();
|
|
void collapse(Node? node, optional unsigned long offset = 0);
|
|
void setPosition(Node? node, optional unsigned long offset = 0);
|
|
void collapseToStart();
|
|
void collapseToEnd();
|
|
void extend(Node node, optional unsigned long offset = 0);
|
|
void setBaseAndExtent(Node anchorNode,
|
|
unsigned long anchorOffset,
|
|
Node focusNode,
|
|
unsigned long focusOffset);
|
|
void selectAllChildren(Node node);
|
|
[CEReactions]
|
|
void deleteFromDocument();
|
|
boolean containsNode(Node node,
|
|
optional boolean allowPartialContainment = false);
|
|
stringifier DOMString ();
|
|
};
|
|
</script>
|
|
<script>
|
|
"use strict";
|
|
|
|
var idlArray = new IdlArray();
|
|
idlArray.add_idls(document.querySelector("script[type=text\\/plain]").textContent);
|
|
idlArray.add_objects({Selection: ['getSelection()']});
|
|
idlArray.test();
|
|
</script>
|