| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); | 132 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); |
| 133 | 133 |
| 134 [RaisesException] long lastSpellCheckRequestSequence(Document document); | 134 [RaisesException] long lastSpellCheckRequestSequence(Document document); |
| 135 [RaisesException] long lastSpellCheckProcessedSequence(Document document); | 135 [RaisesException] long lastSpellCheckProcessedSequence(Document document); |
| 136 | 136 |
| 137 sequence<DOMString> userPreferredLanguages(); | 137 sequence<DOMString> userPreferredLanguages(); |
| 138 void setUserPreferredLanguages(sequence<DOMString> languages); | 138 void setUserPreferredLanguages(sequence<DOMString> languages); |
| 139 | 139 |
| 140 [RaisesException] unsigned long wheelEventHandlerCount(Document document); | 140 [RaisesException] unsigned long wheelEventHandlerCount(Document document); |
| 141 [RaisesException] unsigned long touchEventHandlerCount(Document document); | 141 [RaisesException] unsigned long touchEventHandlerCount(Document document); |
| 142 [RaisesException] ClientRectList touchEventTargetClientRects(Document docume
nt); | 142 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); |
| 143 [RaisesException] unsigned long touchEventTargetLayerRectsUpdateCount(Docume
nt document); |
| 143 | 144 |
| 144 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, | 145 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, |
| 145 unsigned long topPadding, unsigned long rightPadding, unsigned long bott
omPadding, unsigned long leftPadding, | 146 unsigned long topPadding, unsigned long rightPadding, unsigned long bott
omPadding, unsigned long leftPadding, |
| 146 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr
ameContent); | 147 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr
ameContent); |
| 147 | 148 |
| 148 void emitInspectorDidBeginFrame(); | 149 void emitInspectorDidBeginFrame(); |
| 149 void emitInspectorDidCancelFrame(); | 150 void emitInspectorDidCancelFrame(); |
| 150 | 151 |
| 151 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo
ng length); | 152 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo
ng length); |
| 152 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon
g length); | 153 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon
g length); |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 void forceReload(boolean endToEnd); | 250 void forceReload(boolean endToEnd); |
| 250 | 251 |
| 251 void enableMockSpeechSynthesizer(); | 252 void enableMockSpeechSynthesizer(); |
| 252 | 253 |
| 253 [RaisesException] DOMString getImageSourceURL(Element element); | 254 [RaisesException] DOMString getImageSourceURL(Element element); |
| 254 | 255 |
| 255 boolean isSelectPopupVisible(Node node); | 256 boolean isSelectPopupVisible(Node node); |
| 256 | 257 |
| 257 [RaisesException] ClientRect selectionBounds(); | 258 [RaisesException] ClientRect selectionBounds(); |
| 258 }; | 259 }; |
| OLD | NEW |