summaryrefslogtreecommitdiffstats
path: root/dom/webidl/Selection.webidl
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-23 09:16:50 +0200
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-23 09:16:50 +0200
commit0a9acadccafe04aa5bc3335523bb55fe52ca8e50 (patch)
treeab49c5db5979719019b24c9086aa3701655702d5 /dom/webidl/Selection.webidl
parentc30ebdac27c93b57e368c69e9c13055a17229992 (diff)
downloadUXP-0a9acadccafe04aa5bc3335523bb55fe52ca8e50.tar
UXP-0a9acadccafe04aa5bc3335523bb55fe52ca8e50.tar.gz
UXP-0a9acadccafe04aa5bc3335523bb55fe52ca8e50.tar.lz
UXP-0a9acadccafe04aa5bc3335523bb55fe52ca8e50.tar.xz
UXP-0a9acadccafe04aa5bc3335523bb55fe52ca8e50.zip
moebius#121: DOM - Selection API - getSelection() should exist on XMLDocument / Selection.type
https://github.com/MoonchildProductions/moebius/pull/121
Diffstat (limited to 'dom/webidl/Selection.webidl')
-rw-r--r--dom/webidl/Selection.webidl3
1 files changed, 2 insertions, 1 deletions
diff --git a/dom/webidl/Selection.webidl b/dom/webidl/Selection.webidl
index c90844dfa..c3eac016c 100644
--- a/dom/webidl/Selection.webidl
+++ b/dom/webidl/Selection.webidl
@@ -33,6 +33,7 @@ interface Selection {
void deleteFromDocument();
readonly attribute unsigned long rangeCount;
+ readonly attribute DOMString type;
[Throws]
Range getRangeAt(unsigned long index);
[Throws]
@@ -77,7 +78,7 @@ partial interface Selection {
void removeSelectionListener(nsISelectionListener listenerToRemove);
[ChromeOnly,BinaryName="rawType"]
- readonly attribute short type;
+ readonly attribute short selectionType;
[ChromeOnly,Throws,Pref="dom.testing.selection.GetRangesForInterval"]
sequence<Range> GetRangesForInterval(Node beginNode, long beginOffset, Node endNode, long endOffset,