Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: third_party/WebKit/Source/core/editing/Selection.idl

Issue 1778683005: Drop remaining [LegacyInterfaceTypeChecking] for Selection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix more tests Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/text/text-layout-crash.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 29 matching lines...) Expand all
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] void addRange(Range 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 [MeasureAs=SelectionCollapse, RaisesException, LegacyInterfaceTypeChecking] void collapse(Node? node, optional long offset = 0); 50 [MeasureAs=SelectionCollapse, RaisesException] void collapse(Node? node, opt ional long offset = 0);
51 [ImplementedAs=collapse, MeasureAs=SelectionSetPosition, RaisesException, Le gacyInterfaceTypeChecking] void setPosition(Node? node, optional long offset = 0 ); 51 [ImplementedAs=collapse, MeasureAs=SelectionSetPosition, RaisesException] vo id setPosition(Node? node, optional long offset = 0);
52 [MeasureAs=SelectionCollapseToStart, RaisesException] void collapseToStart() ; 52 [MeasureAs=SelectionCollapseToStart, RaisesException] void collapseToStart() ;
53 [MeasureAs=SelectionCollapseToEnd, RaisesException] void collapseToEnd(); 53 [MeasureAs=SelectionCollapseToEnd, RaisesException] void collapseToEnd();
54 [MeasureAs=SelectionExtend, RaisesException] void extend(Node node, optional long offset = 0); 54 [MeasureAs=SelectionExtend, RaisesException] void extend(Node node, optional long offset = 0);
55 // TODO(philipj): The arguments should be anchorNode, anchorOffset, 55 // TODO(philipj): The arguments should be anchorNode, anchorOffset,
56 // focusNode and focusOffset, and none of them are optional or nullable in 56 // focusNode and focusOffset, and none of them are optional or nullable in
57 // the spec. 57 // the spec.
58 [MeasureAs=SelectionSetBaseAndExtent, RaisesException, LegacyInterfaceTypeCh ecking] void setBaseAndExtent([Default=Undefined] optional Node? baseNode, 58 [MeasureAs=SelectionSetBaseAndExtent, RaisesException] void setBaseAndExtent ([Default=Undefined] optional Node? baseNode,
59 [Default=Undefined] optional long baseOffset, 59 [Default=Undefined] optional long baseOffset,
60 [Default=Undefined] optional Node? extentNode, 60 [Default=Undefined] optional Node? extentNode,
61 [Default=Undefined] optional long extentOffset); 61 [Default=Undefined] optional long extentOffset);
62 [MeasureAs=SelectionSelectAllChildren, RaisesException] void selectAllChildr en(Node node); 62 [MeasureAs=SelectionSelectAllChildren, RaisesException] void selectAllChildr en(Node node);
63 [MeasureAs=SelectionDeleteDromDocument, CustomElementCallbacks] void deleteF romDocument(); 63 [MeasureAs=SelectionDeleteDromDocument, CustomElementCallbacks] void deleteF romDocument();
64 [MeasureAs=SelectionContainsNode] boolean containsNode(Node node, optional b oolean allowPartialContainment = false); 64 [MeasureAs=SelectionContainsNode] boolean containsNode(Node node, optional b oolean allowPartialContainment = false);
65 // TODO(philipj): The spec does not use [NotEnumerable]. See also: 65 // TODO(philipj): The spec does not use [NotEnumerable]. See also:
66 // https://codereview.chromium.org/345983004/ 66 // https://codereview.chromium.org/345983004/
67 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=26179 67 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=26179
68 [MeasureAs=SelectionDOMString, NotEnumerable] stringifier DOMString(); 68 [MeasureAs=SelectionDOMString, NotEnumerable] stringifier DOMString();
69 69
70 // Non-standard APIs 70 // Non-standard APIs
71 71
72 // https://github.com/w3c/selection-api/issues/34 72 // https://github.com/w3c/selection-api/issues/34
73 [MeasureAs=SelectionBaseNode] readonly attribute Node? baseNode; 73 [MeasureAs=SelectionBaseNode] readonly attribute Node? baseNode;
74 [MeasureAs=SelectionBaseOffset] readonly attribute long baseOffset; 74 [MeasureAs=SelectionBaseOffset] readonly attribute long baseOffset;
75 [MeasureAs=SelectionExtentNode] readonly attribute Node? extentNode; 75 [MeasureAs=SelectionExtentNode] readonly attribute Node? extentNode;
76 [MeasureAs=SelectionExtentOffset] readonly attribute long extentOffset; 76 [MeasureAs=SelectionExtentOffset] readonly attribute long extentOffset;
77 77
78 // https://github.com/w3c/selection-api/issues/37 78 // https://github.com/w3c/selection-api/issues/37
79 [MeasureAs=SelectionModify] void modify([Default=Undefined] optional DOMStri ng alter, 79 [MeasureAs=SelectionModify] void modify([Default=Undefined] optional DOMStri ng alter,
80 [Default=Undefined] optional DOMStri ng direction, 80 [Default=Undefined] optional DOMStri ng direction,
81 [Default=Undefined] optional DOMStri ng granularity); 81 [Default=Undefined] optional DOMStri ng granularity);
82 }; 82 };
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/text/text-layout-crash.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698