Issue #3059 - Implement Selection.setBaseAndExtent()

This commit is contained in:
Moonchild 2022-01-30 22:19:50 +00:00 committed by roytam1
commit 602bb0a877
3 changed files with 59 additions and 0 deletions

View file

@ -46,6 +46,12 @@ interface Selection {
[Throws]
boolean containsNode(Node node, boolean allowPartialContainment);
[Throws]
void setBaseAndExtent(Node anchorNode,
unsigned long anchorOffset,
Node focusNode,
unsigned long focusOffset);
stringifier;
};