OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 [RaisesException] void setEnableMockPagePopup(boolean enabled); | 90 [RaisesException] void setEnableMockPagePopup(boolean enabled); |
91 readonly attribute PagePopupController pagePopupController; | 91 readonly attribute PagePopupController pagePopupController; |
92 | 92 |
93 [RaisesException] ClientRect unscaledViewportRect(); | 93 [RaisesException] ClientRect unscaledViewportRect(); |
94 | 94 |
95 [RaisesException] ClientRect absoluteCaretBounds(); | 95 [RaisesException] ClientRect absoluteCaretBounds(); |
96 | 96 |
97 [RaisesException] ClientRect boundingBox(Element element); | 97 [RaisesException] ClientRect boundingBox(Element element); |
98 | 98 |
99 [RaisesException] ClientRectList inspectorHighlightRects(Document document); | 99 [RaisesException] ClientRectList inspectorHighlightRects(Document document); |
| 100 [RaisesException] DOMString inspectorHighlightCSSShapes(Node node); |
100 | 101 |
101 [RaisesException] unsigned long markerCountForNode(Node node, DOMString mark
erType); | 102 [RaisesException] unsigned long markerCountForNode(Node node, DOMString mark
erType); |
102 [RaisesException] unsigned long activeMarkerCountForNode(Node node); | 103 [RaisesException] unsigned long activeMarkerCountForNode(Node node); |
103 [RaisesException] Range markerRangeForNode(Node node, DOMString markerType,
unsigned long index); | 104 [RaisesException] Range markerRangeForNode(Node node, DOMString markerType,
unsigned long index); |
104 [RaisesException] DOMString markerDescriptionForNode(Node node, DOMString ma
rkerType, unsigned long index); | 105 [RaisesException] DOMString markerDescriptionForNode(Node node, DOMString ma
rkerType, unsigned long index); |
105 void addTextMatchMarker(Range range, boolean isActive); | 106 void addTextMatchMarker(Range range, boolean isActive); |
106 [RaisesException] void setMarkersActive(Node node, unsigned long startOffset
, unsigned long endOffset, boolean active); | 107 [RaisesException] void setMarkersActive(Node node, unsigned long startOffset
, unsigned long endOffset, boolean active); |
107 [RaisesException] void setMarkedTextMatchesAreHighlighted(Document document,
boolean highlight); | 108 [RaisesException] void setMarkedTextMatchesAreHighlighted(Document document,
boolean highlight); |
108 | 109 |
109 [RaisesException] void setScrollViewPosition(Document document, long x, long
y); | 110 [RaisesException] void setScrollViewPosition(Document document, long x, long
y); |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 [CallWith=ExecutionContext] Promise addOneToPromise(Promise promise); | 286 [CallWith=ExecutionContext] Promise addOneToPromise(Promise promise); |
286 [CallWith=ExecutionContext, RaisesException] Promise promiseCheck(long arg1,
boolean arg2, Dictionary arg3, DOMString arg4, DOMString[] arg5); | 287 [CallWith=ExecutionContext, RaisesException] Promise promiseCheck(long arg1,
boolean arg2, Dictionary arg3, DOMString arg4, DOMString[] arg5); |
287 [CallWith=ExecutionContext] Promise promiseCheckWithoutExceptionState(Dictio
nary arg1, DOMString arg2, DOMString... variadic); | 288 [CallWith=ExecutionContext] Promise promiseCheckWithoutExceptionState(Dictio
nary arg1, DOMString arg2, DOMString... variadic); |
288 [CallWith=ExecutionContext] Promise promiseCheckRange([EnforceRange] octet a
rg1); | 289 [CallWith=ExecutionContext] Promise promiseCheckRange([EnforceRange] octet a
rg1); |
289 | 290 |
290 void startSpeechInput(Element element); | 291 void startSpeechInput(Element element); |
291 void setValueForUser(Element element, DOMString value); | 292 void setValueForUser(Element element, DOMString value); |
292 | 293 |
293 DOMString textSurroundingNode(Node node, long x, long y, unsigned long maxLe
ngth); | 294 DOMString textSurroundingNode(Node node, long x, long y, unsigned long maxLe
ngth); |
294 }; | 295 }; |
OLD | NEW |