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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 | 129 |
130 [RaisesException] void paintControlTints(Document document); | 130 [RaisesException] void paintControlTints(Document document); |
131 | 131 |
132 [RaisesException] void scrollElementToRect(Element element, long x, long y,
long w, long h); | 132 [RaisesException] void scrollElementToRect(Element element, long x, long y,
long w, long h); |
133 | 133 |
134 [RaisesException] Range rangeFromLocationAndLength(Element scope, long range
Location, long rangeLength); | 134 [RaisesException] Range rangeFromLocationAndLength(Element scope, long range
Location, long rangeLength); |
135 [RaisesException] unsigned long locationFromRange(Element scope, Range range
); | 135 [RaisesException] unsigned long locationFromRange(Element scope, Range range
); |
136 [RaisesException] unsigned long lengthFromRange(Element scope, Range range); | 136 [RaisesException] unsigned long lengthFromRange(Element scope, Range range); |
137 [RaisesException] DOMString rangeAsText(Range range); | 137 [RaisesException] DOMString rangeAsText(Range range); |
138 | 138 |
139 [RaisesException] void setDelegatesScrolling(boolean enabled, Document docum
ent); | |
140 #if defined(ENABLE_TOUCH_ADJUSTMENT) && ENABLE_TOUCH_ADJUSTMENT | 139 #if defined(ENABLE_TOUCH_ADJUSTMENT) && ENABLE_TOUCH_ADJUSTMENT |
141 [RaisesException] DOMPoint touchPositionAdjustedToBestClickableNode(long x,
long y, long width, long height, Document document); | 140 [RaisesException] DOMPoint touchPositionAdjustedToBestClickableNode(long x,
long y, long width, long height, Document document); |
142 [RaisesException] Node touchNodeAdjustedToBestClickableNode(long x, long y,
long width, long height, Document document); | 141 [RaisesException] Node touchNodeAdjustedToBestClickableNode(long x, long y,
long width, long height, Document document); |
143 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x
, long y, long width, long height, Document document); | 142 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x
, long y, long width, long height, Document document); |
144 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y
, long width, long height, Document document); | 143 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y
, long width, long height, Document document); |
145 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); | 144 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); |
146 #endif | 145 #endif |
147 | 146 |
148 [RaisesException] long lastSpellCheckRequestSequence(Document document); | 147 [RaisesException] long lastSpellCheckRequestSequence(Document document); |
149 [RaisesException] long lastSpellCheckProcessedSequence(Document document); | 148 [RaisesException] long lastSpellCheckProcessedSequence(Document document); |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 [Conditional=VIDEO] void simulateAudioInterruption(Node node); | 264 [Conditional=VIDEO] void simulateAudioInterruption(Node node); |
266 | 265 |
267 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); | 266 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); |
268 | 267 |
269 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); | 268 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); |
270 | 269 |
271 [RaisesException] DOMString getImageSourceURL(Element element); | 270 [RaisesException] DOMString getImageSourceURL(Element element); |
272 | 271 |
273 boolean isSelectPopupVisible(Node node); | 272 boolean isSelectPopupVisible(Node node); |
274 }; | 273 }; |
OLD | NEW |