OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 24 matching lines...) Expand all Loading... |
35 WillBeGarbageCollected, | 35 WillBeGarbageCollected, |
36 ] interface Selection { | 36 ] interface Selection { |
37 [MeasureAs=SelectionAnchorNode] readonly attribute Node? anchorNode; | 37 [MeasureAs=SelectionAnchorNode] readonly attribute Node? anchorNode; |
38 [MeasureAs=SelectionAnchorOffset] readonly attribute long anchorOffset; | 38 [MeasureAs=SelectionAnchorOffset] readonly attribute long anchorOffset; |
39 [MeasureAs=SelectionFocusNode] readonly attribute Node? focusNode; | 39 [MeasureAs=SelectionFocusNode] readonly attribute Node? focusNode; |
40 [MeasureAs=SelectionFocusOffset] readonly attribute long focusOffset; | 40 [MeasureAs=SelectionFocusOffset] readonly attribute long focusOffset; |
41 [MeasureAs=SelectionIsCollapsed] readonly attribute boolean isCollapsed; | 41 [MeasureAs=SelectionIsCollapsed] readonly attribute boolean isCollapsed; |
42 [MeasureAs=SelectionRangeCount] readonly attribute long rangeCount; | 42 [MeasureAs=SelectionRangeCount] readonly attribute long rangeCount; |
43 [MeasureAs=SelectionType] readonly attribute DOMString type; | 43 [MeasureAs=SelectionType] readonly attribute DOMString type; |
44 [MeasureAs=SelectionGetRangeAt, RaisesException] Range getRangeAt(long index
); | 44 [MeasureAs=SelectionGetRangeAt, RaisesException] Range getRangeAt(long index
); |
45 [MeasureAs=SelectionAddRange] void addRange(Range range); | 45 [MeasureAs=SelectionAddRange, LegacyInterfaceTypeChecking] void addRange(Ran
ge range); |
46 // TODO(yoichio): Implement removeRange. crbug.com/391673 | 46 // TODO(yoichio): Implement removeRange. crbug.com/391673 |
47 //void removeRange(Range range); | 47 //void removeRange(Range range); |
48 [MeasureAs=SelectionRemoveAllRanges] void removeAllRanges(); | 48 [MeasureAs=SelectionRemoveAllRanges] void removeAllRanges(); |
49 [MeasureAs=SelectionEmpty] void empty(); | 49 [MeasureAs=SelectionEmpty] void empty(); |
50 // TODO(yoichio): The node argument should not be nullable. crbug.com/391673 | 50 // TODO(yoichio): The node argument should not be nullable. crbug.com/391673 |
51 // TODO(philipj): The offset argument should not have a default value. | 51 // TODO(philipj): The offset argument should not have a default value. |
52 [MeasureAs=SelectionCollapse, RaisesException] void collapse(Node? node, opt
ional long offset = 0); | 52 [MeasureAs=SelectionCollapse, RaisesException, LegacyInterfaceTypeChecking]
void collapse(Node? node, optional long offset = 0); |
53 // TODO(yoichio): The node argument should not be nullable. crbug.com/391673 | 53 // TODO(yoichio): The node argument should not be nullable. crbug.com/391673 |
54 // TODO(philipj): The offset argument should not have a default value. | 54 // TODO(philipj): The offset argument should not have a default value. |
55 [ImplementedAs=collapse, MeasureAs=SelectionSetPosition, RaisesException] vo
id setPosition(Node? node, optional long offset = 0); | 55 [ImplementedAs=collapse, MeasureAs=SelectionSetPosition, RaisesException, Le
gacyInterfaceTypeChecking] void setPosition(Node? node, optional long offset = 0
); |
56 [MeasureAs=SelectionCollapseToStart, RaisesException] void collapseToStart()
; | 56 [MeasureAs=SelectionCollapseToStart, RaisesException] void collapseToStart()
; |
57 [MeasureAs=SelectionCollapseToEnd, RaisesException] void collapseToEnd(); | 57 [MeasureAs=SelectionCollapseToEnd, RaisesException] void collapseToEnd(); |
58 // TODO(philipj): The offset argument should not have a default value. | 58 // TODO(philipj): The offset argument should not have a default value. |
59 [MeasureAs=SelectionExtend, RaisesException, TypeChecking=Interface] void ex
tend(Node node, optional long offset = 0); | 59 [MeasureAs=SelectionExtend, RaisesException] void extend(Node node, optional
long offset = 0); |
60 // TODO(philipj): The arguments should be anchorNode, anchorOffset, | 60 // TODO(philipj): The arguments should be anchorNode, anchorOffset, |
61 // focusNode and focusOffset, and none of them should be optional. | 61 // focusNode and focusOffset, and none of them should be optional. |
62 [MeasureAs=SelectionSetBaseAndExtent, RaisesException] void setBaseAndExtent
([Default=Undefined] optional Node baseNode, | 62 [MeasureAs=SelectionSetBaseAndExtent, RaisesException, LegacyInterfaceTypeCh
ecking] void setBaseAndExtent([Default=Undefined] optional Node baseNode, |
63
[Default=Undefined] optional long baseOffset, | 63
[Default=Undefined] optional long baseOffset, |
64
[Default=Undefined] optional Node extentNode, | 64
[Default=Undefined] optional Node extentNode, |
65
[Default=Undefined] optional long extentOffset); | 65
[Default=Undefined] optional long extentOffset); |
66 [MeasureAs=SelectionSelectAllChildren, RaisesException, TypeChecking=Interfa
ce] void selectAllChildren(Node node); | 66 [MeasureAs=SelectionSelectAllChildren, RaisesException] void selectAllChildr
en(Node node); |
67 [MeasureAs=SelectionDeleteDromDocument, CustomElementCallbacks] void deleteF
romDocument(); | 67 [MeasureAs=SelectionDeleteDromDocument, CustomElementCallbacks] void deleteF
romDocument(); |
68 [MeasureAs=SelectionContainsNode, TypeChecking=Interface] boolean containsNo
de(Node node, optional boolean allowPartialContainment = false); | 68 [MeasureAs=SelectionContainsNode] boolean containsNode(Node node, optional b
oolean allowPartialContainment = false); |
69 // TODO(philipj): The spec does not use [NotEnumerable]. See also: | 69 // TODO(philipj): The spec does not use [NotEnumerable]. See also: |
70 // https://codereview.chromium.org/345983004/ | 70 // https://codereview.chromium.org/345983004/ |
71 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=26179 | 71 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=26179 |
72 [MeasureAs=SelectionDOMString, NotEnumerable] stringifier DOMString(); | 72 [MeasureAs=SelectionDOMString, NotEnumerable] stringifier DOMString(); |
73 | 73 |
74 // Non-standard APIs | 74 // Non-standard APIs |
75 | 75 |
76 // https://github.com/w3c/selection-api/issues/34 | 76 // https://github.com/w3c/selection-api/issues/34 |
77 [MeasureAs=SelectionBaseNode] readonly attribute Node? baseNode; | 77 [MeasureAs=SelectionBaseNode] readonly attribute Node? baseNode; |
78 [MeasureAs=SelectionBaseOffset] readonly attribute long baseOffset; | 78 [MeasureAs=SelectionBaseOffset] readonly attribute long baseOffset; |
79 [MeasureAs=SelectionExtentNode] readonly attribute Node? extentNode; | 79 [MeasureAs=SelectionExtentNode] readonly attribute Node? extentNode; |
80 [MeasureAs=SelectionExtentOffset] readonly attribute long extentOffset; | 80 [MeasureAs=SelectionExtentOffset] readonly attribute long extentOffset; |
81 | 81 |
82 // https://github.com/w3c/selection-api/issues/37 | 82 // https://github.com/w3c/selection-api/issues/37 |
83 [MeasureAs=SelectionModify] void modify([Default=Undefined] optional DOMStri
ng alter, | 83 [MeasureAs=SelectionModify] void modify([Default=Undefined] optional DOMStri
ng alter, |
84 [Default=Undefined] optional DOMStri
ng direction, | 84 [Default=Undefined] optional DOMStri
ng direction, |
85 [Default=Undefined] optional DOMStri
ng granularity); | 85 [Default=Undefined] optional DOMStri
ng granularity); |
86 }; | 86 }; |
OLD | NEW |