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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 #endif | 136 #endif |
137 | 137 |
138 [RaisesException] long lastSpellCheckRequestSequence(Document document); | 138 [RaisesException] long lastSpellCheckRequestSequence(Document document); |
139 [RaisesException] long lastSpellCheckProcessedSequence(Document document); | 139 [RaisesException] long lastSpellCheckProcessedSequence(Document document); |
140 | 140 |
141 sequence<DOMString> userPreferredLanguages(); | 141 sequence<DOMString> userPreferredLanguages(); |
142 void setUserPreferredLanguages(sequence<DOMString> languages); | 142 void setUserPreferredLanguages(sequence<DOMString> languages); |
143 | 143 |
144 [RaisesException] unsigned long wheelEventHandlerCount(Document document); | 144 [RaisesException] unsigned long wheelEventHandlerCount(Document document); |
145 [RaisesException] unsigned long touchEventHandlerCount(Document document); | 145 [RaisesException] unsigned long touchEventHandlerCount(Document document); |
146 #if defined(ENABLE_TOUCH_EVENT_TRACKING) && ENABLE_TOUCH_EVENT_TRACKING | |
147 [RaisesException] ClientRectList touchEventTargetClientRects(Document docume
nt); | 146 [RaisesException] ClientRectList touchEventTargetClientRects(Document docume
nt); |
148 #endif | |
149 | 147 |
150 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, | 148 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, |
151 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, |
152 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr
ameContent); | 150 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr
ameContent); |
153 | 151 |
154 void emitInspectorDidBeginFrame(); | 152 void emitInspectorDidBeginFrame(); |
155 void emitInspectorDidCancelFrame(); | 153 void emitInspectorDidCancelFrame(); |
156 | 154 |
157 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo
ng length); | 155 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo
ng length); |
158 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon
g length); | 156 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon
g length); |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 [Conditional=VIDEO] void simulateAudioInterruption(Node node); | 245 [Conditional=VIDEO] void simulateAudioInterruption(Node node); |
248 | 246 |
249 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); | 247 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); |
250 | 248 |
251 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); | 249 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); |
252 | 250 |
253 [RaisesException] DOMString getImageSourceURL(Element element); | 251 [RaisesException] DOMString getImageSourceURL(Element element); |
254 | 252 |
255 boolean isSelectPopupVisible(Node node); | 253 boolean isSelectPopupVisible(Node node); |
256 }; | 254 }; |
OLD | NEW |