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