| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 sequence<DOMString> userPreferredLanguages(); | 150 sequence<DOMString> userPreferredLanguages(); |
| 151 void setUserPreferredLanguages(sequence<DOMString> languages); | 151 void setUserPreferredLanguages(sequence<DOMString> languages); |
| 152 | 152 |
| 153 unsigned long mediaKeysCount(); | 153 unsigned long mediaKeysCount(); |
| 154 unsigned long mediaKeySessionCount(); | 154 unsigned long mediaKeySessionCount(); |
| 155 unsigned long suspendableObjectCount(Document document); | 155 unsigned long suspendableObjectCount(Document document); |
| 156 unsigned long wheelEventHandlerCount(Document document); | 156 unsigned long wheelEventHandlerCount(Document document); |
| 157 unsigned long scrollEventHandlerCount(Document document); | 157 unsigned long scrollEventHandlerCount(Document document); |
| 158 unsigned long touchStartOrMoveEventHandlerCount(Document document); | 158 unsigned long touchStartOrMoveEventHandlerCount(Document document); |
| 159 unsigned long touchEndOrCancelEventHandlerCount(Document document); | 159 unsigned long touchEndOrCancelEventHandlerCount(Document document); |
| 160 unsigned long pointerEventHandlerCount(Document document); |
| 160 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); | 161 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); |
| 161 | 162 |
| 162 [RaisesException] boolean executeCommand(Document document, DOMString name,
DOMString value); | 163 [RaisesException] boolean executeCommand(Document document, DOMString name,
DOMString value); |
| 163 | 164 |
| 164 DOMString htmlNamespace(); | 165 DOMString htmlNamespace(); |
| 165 sequence<DOMString> htmlTags(); | 166 sequence<DOMString> htmlTags(); |
| 166 DOMString svgNamespace(); | 167 DOMString svgNamespace(); |
| 167 sequence<DOMString> svgTags(); | 168 sequence<DOMString> svgTags(); |
| 168 | 169 |
| 169 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, | 170 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 DOMString getProgrammaticScrollAnimationState(Node node); | 382 DOMString getProgrammaticScrollAnimationState(Node node); |
| 382 | 383 |
| 383 ClientRect visualRect(Node node); | 384 ClientRect visualRect(Node node); |
| 384 | 385 |
| 385 OriginTrialsTest originTrialsTest(); | 386 OriginTrialsTest originTrialsTest(); |
| 386 | 387 |
| 387 void crash(); | 388 void crash(); |
| 388 | 389 |
| 389 void setIsLowEndDevice(boolean isLowEndDevice); | 390 void setIsLowEndDevice(boolean isLowEndDevice); |
| 390 }; | 391 }; |
| OLD | NEW |