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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 unsigned long activeDOMObjectCount(Document document); | 144 unsigned long activeDOMObjectCount(Document document); |
145 unsigned long wheelEventHandlerCount(Document document); | 145 unsigned long wheelEventHandlerCount(Document document); |
146 unsigned long scrollEventHandlerCount(Document document); | 146 unsigned long scrollEventHandlerCount(Document document); |
147 unsigned long touchEventHandlerCount(Document document); | 147 unsigned long touchStartOrMoveEventHandlerCount(Document document); |
| 148 unsigned long touchEndOrCancelEventHandlerCount(Document document); |
148 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); | 149 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); |
149 | 150 |
150 [RaisesException] boolean executeCommand(Document document, DOMString name,
DOMString value); | 151 [RaisesException] boolean executeCommand(Document document, DOMString name,
DOMString value); |
151 | 152 |
152 DOMString htmlNamespace(); | 153 DOMString htmlNamespace(); |
153 sequence<DOMString> htmlTags(); | 154 sequence<DOMString> htmlTags(); |
154 DOMString svgNamespace(); | 155 DOMString svgNamespace(); |
155 sequence<DOMString> svgTags(); | 156 sequence<DOMString> svgTags(); |
156 | 157 |
157 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, | 158 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 | 355 |
355 void setMediaElementNetworkState(HTMLMediaElement element, long state); | 356 void setMediaElementNetworkState(HTMLMediaElement element, long state); |
356 | 357 |
357 // TODO(liberato): remove once autoplay gesture override experiment conclude
s. | 358 // TODO(liberato): remove once autoplay gesture override experiment conclude
s. |
358 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); | 359 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); |
359 | 360 |
360 DOMString getScrollAnimationState(Node node); | 361 DOMString getScrollAnimationState(Node node); |
361 | 362 |
362 DOMString getProgrammaticScrollAnimationState(Node node); | 363 DOMString getProgrammaticScrollAnimationState(Node node); |
363 }; | 364 }; |
OLD | NEW |