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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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] long lastSpellCheckRequestSequence(Document document); | 136 [RaisesException] long lastSpellCheckRequestSequence(Document document); |
137 [RaisesException] long lastSpellCheckProcessedSequence(Document document); | 137 [RaisesException] long lastSpellCheckProcessedSequence(Document document); |
138 | 138 |
139 sequence<DOMString> userPreferredLanguages(); | 139 sequence<DOMString> userPreferredLanguages(); |
140 void setUserPreferredLanguages(sequence<DOMString> languages); | 140 void setUserPreferredLanguages(sequence<DOMString> languages); |
141 | 141 |
142 [RaisesException] unsigned long wheelEventHandlerCount(Document document); | 142 [RaisesException] unsigned long wheelEventHandlerCount(Document document); |
143 [RaisesException] unsigned long touchEventHandlerCount(Document document); | 143 [RaisesException] unsigned long touchEventHandlerCount(Document document); |
| 144 #if defined(ENABLE_TOUCH_EVENT_TRACKING) && ENABLE_TOUCH_EVENT_TRACKING |
144 [RaisesException] ClientRectList touchEventTargetClientRects(Document docume
nt); | 145 [RaisesException] ClientRectList touchEventTargetClientRects(Document docume
nt); |
| 146 #endif |
145 | 147 |
146 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, | 148 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, |
147 unsigned long topPadding, unsigned long rightPadding, unsigned long bott
omPadding, unsigned long leftPadding, | 149 unsigned long topPadding, unsigned long rightPadding, unsigned long bott
omPadding, unsigned long leftPadding, |
148 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr
ameContent); | 150 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr
ameContent); |
149 | 151 |
150 void emitInspectorDidBeginFrame(); | 152 void emitInspectorDidBeginFrame(); |
151 void emitInspectorDidCancelFrame(); | 153 void emitInspectorDidCancelFrame(); |
152 | 154 |
153 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo
ng length); | 155 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo
ng length); |
154 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon
g length); | 156 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon
g length); |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 void forceReload(boolean endToEnd); | 240 void forceReload(boolean endToEnd); |
239 | 241 |
240 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); | 242 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); |
241 | 243 |
242 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); | 244 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); |
243 | 245 |
244 [RaisesException] DOMString getImageSourceURL(Element element); | 246 [RaisesException] DOMString getImageSourceURL(Element element); |
245 | 247 |
246 boolean isSelectPopupVisible(Node node); | 248 boolean isSelectPopupVisible(Node node); |
247 }; | 249 }; |
OLD | NEW |