| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x
, long y, long width, long height, Document document); | 138 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x
, long y, long width, long height, Document document); |
| 139 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y
, long width, long height, Document document); | 139 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y
, long width, long height, Document document); |
| 140 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); | 140 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); |
| 141 | 141 |
| 142 [RaisesException] long lastSpellCheckRequestSequence(Document document); | 142 [RaisesException] long lastSpellCheckRequestSequence(Document document); |
| 143 [RaisesException] long lastSpellCheckProcessedSequence(Document document); | 143 [RaisesException] long lastSpellCheckProcessedSequence(Document document); |
| 144 | 144 |
| 145 sequence<DOMString> userPreferredLanguages(); | 145 sequence<DOMString> userPreferredLanguages(); |
| 146 void setUserPreferredLanguages(sequence<DOMString> languages); | 146 void setUserPreferredLanguages(sequence<DOMString> languages); |
| 147 | 147 |
| 148 unsigned long activeDOMObjectCount(Document document); | 148 unsigned long suspendableObjectCount(Document document); |
| 149 unsigned long wheelEventHandlerCount(Document document); | 149 unsigned long wheelEventHandlerCount(Document document); |
| 150 unsigned long scrollEventHandlerCount(Document document); | 150 unsigned long scrollEventHandlerCount(Document document); |
| 151 unsigned long touchStartOrMoveEventHandlerCount(Document document); | 151 unsigned long touchStartOrMoveEventHandlerCount(Document document); |
| 152 unsigned long touchEndOrCancelEventHandlerCount(Document document); | 152 unsigned long touchEndOrCancelEventHandlerCount(Document document); |
| 153 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); | 153 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); |
| 154 | 154 |
| 155 [RaisesException] boolean executeCommand(Document document, DOMString name,
DOMString value); | 155 [RaisesException] boolean executeCommand(Document document, DOMString name,
DOMString value); |
| 156 | 156 |
| 157 DOMString htmlNamespace(); | 157 DOMString htmlNamespace(); |
| 158 sequence<DOMString> htmlTags(); | 158 sequence<DOMString> htmlTags(); |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 DOMString getProgrammaticScrollAnimationState(Node node); | 353 DOMString getProgrammaticScrollAnimationState(Node node); |
| 354 | 354 |
| 355 ClientRect visualRect(Node node); | 355 ClientRect visualRect(Node node); |
| 356 | 356 |
| 357 OriginTrialsTest originTrialsTest(); | 357 OriginTrialsTest originTrialsTest(); |
| 358 | 358 |
| 359 void crash(); | 359 void crash(); |
| 360 | 360 |
| 361 void setIsLowEndDevice(boolean isLowEndDevice); | 361 void setIsLowEndDevice(boolean isLowEndDevice); |
| 362 }; | 362 }; |
| OLD | NEW |