2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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]
|
Bug 1444847 - part 1: Create `mozilla::dom::AbstractRange` r=smaug
This patch is based on the patch created by Makoto Kato-san.
`Range` and `StaticRange` have common base interface, `AbstractRange`.
https://dom.spec.whatwg.org/#abstractrange
This interface has simply returns `startContainer`, `endContainer`,
`startOffset`, `endOffset` and `collapsed`.
Different from the original patch's approach, this patch moves related
members in `nsRange` to `AbstractRange` since this approach avoids
virtual call cost. Additionally, this patch makes them not throw as
declared by the spec. As far as I know, the destruction cost of
`ErrorResult` may appear in profile so that we should avoid creating
the instance if we can avoid it.
Unfortunately, the instance size of `nsRange` becomes larger with this
patch. The size is changed from 176 to 184. I.e., now, `nsRange`
requires bigger chunk.
Differential Revision: https://phabricator.services.mozilla.com/D35140
--HG--
extra : moz-landing-system : lando
2019-06-28 10:46:35 +03:00
|
|
|
interface Range : AbstractRange {
|
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();
|
|
|
|
};
|