| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 sequence<DOMString> userPreferredLanguages(); | 142 sequence<DOMString> userPreferredLanguages(); |
| 143 void setUserPreferredLanguages(sequence<DOMString> languages); | 143 void setUserPreferredLanguages(sequence<DOMString> languages); |
| 144 | 144 |
| 145 unsigned long mediaKeysCount(); | 145 unsigned long mediaKeysCount(); |
| 146 unsigned long mediaKeySessionCount(); | 146 unsigned long mediaKeySessionCount(); |
| 147 unsigned long suspendableObjectCount(Document document); | 147 unsigned long suspendableObjectCount(Document document); |
| 148 unsigned long wheelEventHandlerCount(Document document); | 148 unsigned long wheelEventHandlerCount(Document document); |
| 149 unsigned long scrollEventHandlerCount(Document document); | 149 unsigned long scrollEventHandlerCount(Document document); |
| 150 unsigned long touchStartOrMoveEventHandlerCount(Document document); | 150 unsigned long touchStartOrMoveEventHandlerCount(Document document); |
| 151 unsigned long touchEndOrCancelEventHandlerCount(Document document); | 151 unsigned long touchEndOrCancelEventHandlerCount(Document document); |
| 152 unsigned long pointerEventHandlerCount(Document document); |
| 152 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); | 153 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document
); |
| 153 | 154 |
| 154 [RaisesException] boolean executeCommand(Document document, DOMString name,
DOMString value); | 155 [RaisesException] boolean executeCommand(Document document, DOMString name,
DOMString value); |
| 155 | 156 |
| 156 DOMString htmlNamespace(); | 157 DOMString htmlNamespace(); |
| 157 sequence<DOMString> htmlTags(); | 158 sequence<DOMString> htmlTags(); |
| 158 DOMString svgNamespace(); | 159 DOMString svgNamespace(); |
| 159 sequence<DOMString> svgTags(); | 160 sequence<DOMString> svgTags(); |
| 160 | 161 |
| 161 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, | 162 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 DOMString getProgrammaticScrollAnimationState(Node node); | 373 DOMString getProgrammaticScrollAnimationState(Node node); |
| 373 | 374 |
| 374 ClientRect visualRect(Node node); | 375 ClientRect visualRect(Node node); |
| 375 | 376 |
| 376 OriginTrialsTest originTrialsTest(); | 377 OriginTrialsTest originTrialsTest(); |
| 377 | 378 |
| 378 void crash(); | 379 void crash(); |
| 379 | 380 |
| 380 void setIsLowEndDevice(boolean isLowEndDevice); | 381 void setIsLowEndDevice(boolean isLowEndDevice); |
| 381 }; | 382 }; |
| OLD | NEW |