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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 [RaisesException] unsigned long locationFromRange(Element scope, Range range
); | 126 [RaisesException] unsigned long locationFromRange(Element scope, Range range
); |
127 [RaisesException] unsigned long lengthFromRange(Element scope, Range range); | 127 [RaisesException] unsigned long lengthFromRange(Element scope, Range range); |
128 [RaisesException] DOMString rangeAsText(Range range); | 128 [RaisesException] DOMString rangeAsText(Range range); |
129 | 129 |
130 [RaisesException] WebKitPoint touchPositionAdjustedToBestClickableNode(long
x, long y, long width, long height, Document document); | 130 [RaisesException] WebKitPoint touchPositionAdjustedToBestClickableNode(long
x, long y, long width, long height, Document document); |
131 [RaisesException] Node touchNodeAdjustedToBestClickableNode(long x, long y,
long width, long height, Document document); | 131 [RaisesException] Node touchNodeAdjustedToBestClickableNode(long x, long y,
long width, long height, Document document); |
132 [RaisesException] WebKitPoint touchPositionAdjustedToBestContextMenuNode(lon
g x, long y, long width, long height, Document document); | 132 [RaisesException] WebKitPoint touchPositionAdjustedToBestContextMenuNode(lon
g x, long y, long width, long height, Document document); |
133 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y
, long width, long height, Document document); | 133 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y
, long width, long height, Document document); |
134 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); | 134 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); |
135 | 135 |
| 136 [RaisesException] void suspendActiveIntervalTimer(Document document); |
| 137 [RaisesException] void resumeActiveIntervalTimer(Document document); |
| 138 [RaisesException] void fireActiveIntervalTimer(Document document); |
| 139 |
136 [RaisesException] long lastSpellCheckRequestSequence(Document document); | 140 [RaisesException] long lastSpellCheckRequestSequence(Document document); |
137 [RaisesException] long lastSpellCheckProcessedSequence(Document document); | 141 [RaisesException] long lastSpellCheckProcessedSequence(Document document); |
138 | 142 |
139 sequence<DOMString> userPreferredLanguages(); | 143 sequence<DOMString> userPreferredLanguages(); |
140 void setUserPreferredLanguages(sequence<DOMString> languages); | 144 void setUserPreferredLanguages(sequence<DOMString> languages); |
141 | 145 |
142 [RaisesException] unsigned long wheelEventHandlerCount(Document document); | 146 [RaisesException] unsigned long wheelEventHandlerCount(Document document); |
143 [RaisesException] unsigned long touchEventHandlerCount(Document document); | 147 [RaisesException] unsigned long touchEventHandlerCount(Document document); |
144 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); | 148 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); |
145 | 149 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 boolean isSelectPopupVisible(Node node); | 270 boolean isSelectPopupVisible(Node node); |
267 | 271 |
268 [RaisesException] ClientRect selectionBounds(); | 272 [RaisesException] ClientRect selectionBounds(); |
269 | 273 |
270 boolean loseSharedGraphicsContext3D(); | 274 boolean loseSharedGraphicsContext3D(); |
271 | 275 |
272 [RaisesException] void forceCompositingUpdate(Document document); | 276 [RaisesException] void forceCompositingUpdate(Document document); |
273 | 277 |
274 void setZoomFactor(float factor); | 278 void setZoomFactor(float factor); |
275 }; | 279 }; |
OLD | NEW |