| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 [RaisesException] ShadowRoot youngerShadowRoot(Node root); | 51 [RaisesException] ShadowRoot youngerShadowRoot(Node root); |
| 52 | 52 |
| 53 [RaisesException] DOMString shadowRootType(Node root); | 53 [RaisesException] DOMString shadowRootType(Node root); |
| 54 [RaisesException] boolean hasShadowInsertionPoint(Node root); | 54 [RaisesException] boolean hasShadowInsertionPoint(Node root); |
| 55 [RaisesException] boolean hasContentElement(Node root); | 55 [RaisesException] boolean hasContentElement(Node root); |
| 56 [RaisesException] unsigned long countElementShadow(Node Root); | 56 [RaisesException] unsigned long countElementShadow(Node Root); |
| 57 DOMString shadowPseudoId(Element element); | 57 DOMString shadowPseudoId(Element element); |
| 58 [RaisesException] boolean isValidContentSelect(Element contentElement); | 58 [RaisesException] boolean isValidContentSelect(Element contentElement); |
| 59 Node treeScopeRootNode(Node node); | 59 Node treeScopeRootNode(Node node); |
| 60 Node parentTreeScope(Node node); | 60 Node parentTreeScope(Node node); |
| 61 [RaisesException] boolean hasSelectorForIdInShadow(Element host, DOMString i
d); | |
| 62 [RaisesException] boolean hasSelectorForClassInShadow(Element host, DOMStrin
g className); | |
| 63 [RaisesException] boolean hasSelectorForAttributeInShadow(Element host, DOMS
tring attributeName); | |
| 64 [RaisesException] unsigned short compareTreeScopePosition(Node treeScope1, N
ode treeScope2); | 61 [RaisesException] unsigned short compareTreeScopePosition(Node treeScope1, N
ode treeScope2); |
| 65 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount(); | 62 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount(); |
| 66 [RaisesException] unsigned long needsLayoutCount(); | 63 [RaisesException] unsigned long needsLayoutCount(); |
| 67 [RaisesException] unsigned long hitTestCount(Document document); | 64 [RaisesException] unsigned long hitTestCount(Document document); |
| 68 [RaisesException] unsigned long hitTestCacheHits(Document document); | 65 [RaisesException] unsigned long hitTestCacheHits(Document document); |
| 69 [RaisesException] Element? elementFromPoint(Document document, double x, dou
ble y, boolean ignoreClipping, boolean allowChildFrameContent); | 66 [RaisesException] Element? elementFromPoint(Document document, double x, dou
ble y, boolean ignoreClipping, boolean allowChildFrameContent); |
| 70 [RaisesException] void clearHitTestCache(Document document); | 67 [RaisesException] void clearHitTestCache(Document document); |
| 71 | 68 |
| 72 // Animation testing. | 69 // Animation testing. |
| 73 [RaisesException] void pauseAnimations(double pauseTime); | 70 [RaisesException] void pauseAnimations(double pauseTime); |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 DOMString getProgrammaticScrollAnimationState(Node node); | 352 DOMString getProgrammaticScrollAnimationState(Node node); |
| 356 | 353 |
| 357 ClientRect visualRect(Node node); | 354 ClientRect visualRect(Node node); |
| 358 | 355 |
| 359 OriginTrialsTest originTrialsTest(); | 356 OriginTrialsTest originTrialsTest(); |
| 360 | 357 |
| 361 void crash(); | 358 void crash(); |
| 362 | 359 |
| 363 void setIsLowEndDevice(boolean isLowEndDevice); | 360 void setIsLowEndDevice(boolean isLowEndDevice); |
| 364 }; | 361 }; |
| OLD | NEW |