| 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 DOMString rangeAsText(Range range); | 132 DOMString rangeAsText(Range range); |
| 133 | 133 |
| 134 [RaisesException] DOMPoint touchPositionAdjustedToBestClickableNode(long x,
long y, long width, long height, Document document); | 134 [RaisesException] DOMPoint touchPositionAdjustedToBestClickableNode(long x,
long y, long width, long height, Document document); |
| 135 [RaisesException] Node touchNodeAdjustedToBestClickableNode(long x, long y,
long width, long height, Document document); | 135 [RaisesException] Node touchNodeAdjustedToBestClickableNode(long x, long y,
long width, long height, Document document); |
| 136 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x
, long y, long width, long height, Document document); | 136 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x
, long y, long width, long height, Document document); |
| 137 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y
, long width, long height, Document document); | 137 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y
, long width, long height, Document document); |
| 138 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); | 138 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l
ong width, long height, Document document); |
| 139 | 139 |
| 140 [RaisesException] long lastSpellCheckRequestSequence(Document document); | 140 [RaisesException] long lastSpellCheckRequestSequence(Document document); |
| 141 [RaisesException] long lastSpellCheckProcessedSequence(Document document); | 141 [RaisesException] long lastSpellCheckProcessedSequence(Document document); |
| 142 [RuntimeEnabled=IdleTimeSpellChecking, RaisesException] DOMString idleTimeSp
ellCheckerState(Document document); |
| 143 [RuntimeEnabled=IdleTimeSpellChecking, RaisesException] void runIdleTimeSpel
lChecker(Document document); |
| 142 | 144 |
| 143 sequence<DOMString> userPreferredLanguages(); | 145 sequence<DOMString> userPreferredLanguages(); |
| 144 void setUserPreferredLanguages(sequence<DOMString> languages); | 146 void setUserPreferredLanguages(sequence<DOMString> languages); |
| 145 | 147 |
| 146 unsigned long mediaKeysCount(); | 148 unsigned long mediaKeysCount(); |
| 147 unsigned long mediaKeySessionCount(); | 149 unsigned long mediaKeySessionCount(); |
| 148 unsigned long suspendableObjectCount(Document document); | 150 unsigned long suspendableObjectCount(Document document); |
| 149 unsigned long wheelEventHandlerCount(Document document); | 151 unsigned long wheelEventHandlerCount(Document document); |
| 150 unsigned long scrollEventHandlerCount(Document document); | 152 unsigned long scrollEventHandlerCount(Document document); |
| 151 unsigned long touchStartOrMoveEventHandlerCount(Document document); | 153 unsigned long touchStartOrMoveEventHandlerCount(Document document); |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 DOMString getProgrammaticScrollAnimationState(Node node); | 367 DOMString getProgrammaticScrollAnimationState(Node node); |
| 366 | 368 |
| 367 ClientRect visualRect(Node node); | 369 ClientRect visualRect(Node node); |
| 368 | 370 |
| 369 OriginTrialsTest originTrialsTest(); | 371 OriginTrialsTest originTrialsTest(); |
| 370 | 372 |
| 371 void crash(); | 373 void crash(); |
| 372 | 374 |
| 373 void setIsLowEndDevice(boolean isLowEndDevice); | 375 void setIsLowEndDevice(boolean isLowEndDevice); |
| 374 }; | 376 }; |
| OLD | NEW |