mirror of
https://github.com/servo/servo.git
synced 2025-08-13 17:35:36 +01:00
script: Move code generation and webidl files to new script_bindings crate. (#35157)
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
This commit is contained in:
parent
a88b59534f
commit
af8d7c2de7
469 changed files with 187 additions and 137 deletions
79
components/script_bindings/webidls/Range.webidl
Normal file
79
components/script_bindings/webidls/Range.webidl
Normal file
|
@ -0,0 +1,79 @@
|
|||
/* 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 https://mozilla.org/MPL/2.0/. */
|
||||
/*
|
||||
* The origin of this IDL file is
|
||||
* https://dom.spec.whatwg.org/#range
|
||||
* https://w3c.github.io/DOM-Parsing/#dom-range-createcontextualfragment
|
||||
* http://dvcs.w3.org/hg/csswg/raw-file/tip/cssom-view/Overview.html#extensions-to-the-range-interface
|
||||
*/
|
||||
|
||||
[Exposed=Window]
|
||||
interface Range : AbstractRange {
|
||||
[Throws] constructor();
|
||||
[Pure]
|
||||
readonly attribute Node commonAncestorContainer;
|
||||
|
||||
[Throws]
|
||||
undefined setStart(Node refNode, unsigned long offset);
|
||||
[Throws]
|
||||
undefined setEnd(Node refNode, unsigned long offset);
|
||||
[Throws]
|
||||
undefined setStartBefore(Node refNode);
|
||||
[Throws]
|
||||
undefined setStartAfter(Node refNode);
|
||||
[Throws]
|
||||
undefined setEndBefore(Node refNode);
|
||||
[Throws]
|
||||
undefined setEndAfter(Node refNode);
|
||||
undefined collapse(optional boolean toStart = false);
|
||||
[Throws]
|
||||
undefined selectNode(Node refNode);
|
||||
[Throws]
|
||||
undefined 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;
|
||||
[Pure, Throws]
|
||||
short compareBoundaryPoints(unsigned short how, Range sourceRange);
|
||||
[CEReactions, Throws]
|
||||
undefined deleteContents();
|
||||
[CEReactions, NewObject, Throws]
|
||||
DocumentFragment extractContents();
|
||||
[CEReactions, NewObject, Throws]
|
||||
DocumentFragment cloneContents();
|
||||
[CEReactions, Throws]
|
||||
undefined insertNode(Node node);
|
||||
[CEReactions, Throws]
|
||||
undefined surroundContents(Node newParent);
|
||||
|
||||
[NewObject]
|
||||
Range cloneRange();
|
||||
[Pure]
|
||||
undefined detach();
|
||||
|
||||
[Pure, Throws]
|
||||
boolean isPointInRange(Node node, unsigned long offset);
|
||||
[Pure, Throws]
|
||||
short comparePoint(Node node, unsigned long offset);
|
||||
|
||||
[Pure]
|
||||
boolean intersectsNode(Node node);
|
||||
|
||||
stringifier;
|
||||
};
|
||||
|
||||
// https://dvcs.w3.org/hg/innerhtml/raw-file/tip/index.html#extensions-to-the-range-interface
|
||||
partial interface Range {
|
||||
[CEReactions, NewObject, Throws]
|
||||
DocumentFragment createContextualFragment(DOMString fragment);
|
||||
};
|
||||
|
||||
// http://dev.w3.org/csswg/cssom-view/#extensions-to-the-range-interface
|
||||
partial interface Range {
|
||||
// sequence<DOMRect> getClientRects();
|
||||
// [NewObject]
|
||||
// DOMRect getBoundingClientRect();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue