2018-09-13 22:30:51 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-03-31 08:42:20 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
2013-02-07 16:09:41 +04:00
|
|
|
* http://dom.spec.whatwg.org/#range
|
|
|
|
* http://domparsing.spec.whatwg.org/#dom-range-createcontextualfragment
|
|
|
|
* http://dvcs.w3.org/hg/csswg/raw-file/tip/cssom-view/Overview.html#extensions-to-the-range-interface
|
2012-03-31 08:42:20 +04:00
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2013-05-21 22:33:28 +04:00
|
|
|
[Constructor]
|
2012-03-31 08:42:20 +04:00
|
|
|
interface Range {
|
2013-02-07 16:09:41 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Node startContainer;
|
2013-02-07 16:09:41 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute unsigned long startOffset;
|
2013-02-07 16:09:41 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Node endContainer;
|
2013-02-07 16:09:41 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute unsigned long endOffset;
|
|
|
|
readonly attribute boolean collapsed;
|
2013-02-07 16:09:41 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Node commonAncestorContainer;
|
|
|
|
|
2017-03-10 10:55:12 +03:00
|
|
|
[Throws, BinaryName="setStartJS"]
|
2012-03-31 08:42:20 +04:00
|
|
|
void setStart(Node refNode, unsigned long offset);
|
2017-03-10 10:55:12 +03:00
|
|
|
[Throws, BinaryName="setEndJS"]
|
2012-03-31 08:42:20 +04:00
|
|
|
void setEnd(Node refNode, unsigned long offset);
|
2017-03-10 10:55:12 +03:00
|
|
|
[Throws, BinaryName="setStartBeforeJS"]
|
2012-03-31 08:42:20 +04:00
|
|
|
void setStartBefore(Node refNode);
|
2017-03-10 10:55:12 +03:00
|
|
|
[Throws, BinaryName="setStartAfterJS"]
|
2012-03-31 08:42:20 +04:00
|
|
|
void setStartAfter(Node refNode);
|
2017-03-10 10:55:12 +03:00
|
|
|
[Throws, BinaryName="setEndBeforeJS"]
|
2012-03-31 08:42:20 +04:00
|
|
|
void setEndBefore(Node refNode);
|
2017-03-10 10:55:12 +03:00
|
|
|
[Throws, BinaryName="setEndAfterJS"]
|
2012-03-31 08:42:20 +04:00
|
|
|
void setEndAfter(Node refNode);
|
2017-03-10 10:55:12 +03:00
|
|
|
[BinaryName="collapseJS"]
|
2013-07-10 02:29:38 +04:00
|
|
|
void collapse(optional boolean toStart = false);
|
2017-03-10 10:55:12 +03:00
|
|
|
[Throws, BinaryName="selectNodeJS"]
|
2012-03-31 08:42:20 +04:00
|
|
|
void selectNode(Node refNode);
|
2017-03-10 10:55:12 +03:00
|
|
|
[Throws, BinaryName="selectNodeContentsJS"]
|
2012-03-31 08:42:20 +04:00
|
|
|
void selectNodeContents(Node refNode);
|
|
|
|
|
|
|
|
const unsigned short START_TO_START = 0;
|
|
|
|
const unsigned short START_TO_END = 1;
|
|
|
|
const unsigned short END_TO_END = 2;
|
|
|
|
const unsigned short END_TO_START = 3;
|
2013-02-07 16:09:41 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
short compareBoundaryPoints(unsigned short how, Range sourceRange);
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions, Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
void deleteContents();
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions, Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
DocumentFragment extractContents();
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions, Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
DocumentFragment cloneContents();
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions, Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
void insertNode(Node node);
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions, Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
void surroundContents(Node newParent);
|
|
|
|
|
|
|
|
Range cloneRange();
|
|
|
|
void detach();
|
|
|
|
|
2013-02-07 16:09:41 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
boolean isPointInRange(Node node, unsigned long offset);
|
2013-02-07 16:09:41 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
short comparePoint(Node node, unsigned long offset);
|
|
|
|
|
2013-02-07 16:09:41 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
boolean intersectsNode(Node node);
|
|
|
|
|
2018-03-27 07:35:22 +03:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
stringifier;
|
|
|
|
};
|
2013-02-07 16:09:41 +04:00
|
|
|
|
|
|
|
// http://domparsing.spec.whatwg.org/#dom-range-createcontextualfragment
|
|
|
|
partial interface Range {
|
2017-06-29 17:27:00 +03:00
|
|
|
[CEReactions, Throws]
|
2013-02-07 16:09:41 +04:00
|
|
|
DocumentFragment createContextualFragment(DOMString fragment);
|
|
|
|
};
|
|
|
|
|
|
|
|
// http://dvcs.w3.org/hg/csswg/raw-file/tip/cssom-view/Overview.html#extensions-to-the-range-interface
|
|
|
|
partial interface Range {
|
2013-09-20 14:21:03 +04:00
|
|
|
DOMRectList? getClientRects();
|
|
|
|
DOMRect getBoundingClientRect();
|
2013-02-07 16:09:41 +04:00
|
|
|
};
|
2016-11-02 23:31:06 +03:00
|
|
|
|
|
|
|
dictionary ClientRectsAndTexts {
|
|
|
|
required DOMRectList rectList;
|
2017-03-03 00:13:12 +03:00
|
|
|
required sequence<DOMString> textList;
|
2016-11-02 23:31:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
partial interface Range {
|
|
|
|
[ChromeOnly, Throws]
|
|
|
|
ClientRectsAndTexts getClientRectsAndTexts();
|
|
|
|
};
|