| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 [RaisesException] boolean hasShadowInsertionPoint(Node root); | 52 [RaisesException] boolean hasShadowInsertionPoint(Node root); |
| 53 [RaisesException] boolean hasContentElement(Node root); | 53 [RaisesException] boolean hasContentElement(Node root); |
| 54 [RaisesException, TypeChecking=Interface] unsigned long countElementShadow(N
ode Root); | 54 [RaisesException, TypeChecking=Interface] unsigned long countElementShadow(N
ode Root); |
| 55 [TypeChecking=Interface] DOMString shadowPseudoId(Element element); | 55 [TypeChecking=Interface] DOMString shadowPseudoId(Element element); |
| 56 [RaisesException, TypeChecking=Interface] boolean isValidContentSelect(Eleme
nt contentElement); | 56 [RaisesException, TypeChecking=Interface] boolean isValidContentSelect(Eleme
nt contentElement); |
| 57 [TypeChecking=Interface] Node treeScopeRootNode(Node node); | 57 [TypeChecking=Interface] Node treeScopeRootNode(Node node); |
| 58 [TypeChecking=Interface] Node parentTreeScope(Node node); | 58 [TypeChecking=Interface] Node parentTreeScope(Node node); |
| 59 [RaisesException, TypeChecking=Interface] boolean hasSelectorForIdInShadow(E
lement host, DOMString id); | 59 [RaisesException, TypeChecking=Interface] boolean hasSelectorForIdInShadow(E
lement host, DOMString id); |
| 60 [RaisesException, TypeChecking=Interface] boolean hasSelectorForClassInShado
w(Element host, DOMString className); | 60 [RaisesException, TypeChecking=Interface] boolean hasSelectorForClassInShado
w(Element host, DOMString className); |
| 61 [RaisesException, TypeChecking=Interface] boolean hasSelectorForAttributeInS
hadow(Element host, DOMString attributeName); | 61 [RaisesException, TypeChecking=Interface] boolean hasSelectorForAttributeInS
hadow(Element host, DOMString attributeName); |
| 62 [RaisesException, TypeChecking=Interface] boolean hasSelectorForPseudoClassI
nShadow(Element host, DOMString pseudoClass); | |
| 63 [RaisesException, TypeChecking=Interface] unsigned short compareTreeScopePos
ition(Node treeScope1, Node treeScope2); | 62 [RaisesException, TypeChecking=Interface] unsigned short compareTreeScopePos
ition(Node treeScope1, Node treeScope2); |
| 64 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount(); | 63 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount(); |
| 65 [RaisesException] unsigned long needsLayoutCount(); | 64 [RaisesException] unsigned long needsLayoutCount(); |
| 66 [RaisesException] unsigned long hitTestCount(Document document); | 65 [RaisesException] unsigned long hitTestCount(Document document); |
| 67 | 66 |
| 68 // CSS Animation and Transition testing. | 67 // CSS Animation and Transition testing. |
| 69 [RaisesException] void pauseAnimations(double pauseTime); | 68 [RaisesException] void pauseAnimations(double pauseTime); |
| 70 | 69 |
| 71 [RaisesException, TypeChecking=Interface] Node nextSiblingInComposedTree(Nod
e node); | 70 [RaisesException, TypeChecking=Interface] Node nextSiblingInComposedTree(Nod
e node); |
| 72 [RaisesException, TypeChecking=Interface] Node firstChildInComposedTree(Node
node); | 71 [RaisesException, TypeChecking=Interface] Node firstChildInComposedTree(Node
node); |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 | 310 |
| 312 boolean isUseCounted(Document document, long useCounterId); | 311 boolean isUseCounted(Document document, long useCounterId); |
| 313 | 312 |
| 314 iterable<long>; | 313 iterable<long>; |
| 315 | 314 |
| 316 [Unscopeable] readonly attribute DOMString unscopeableAttribute; | 315 [Unscopeable] readonly attribute DOMString unscopeableAttribute; |
| 317 [Unscopeable] DOMString unscopeableMethod(); | 316 [Unscopeable] DOMString unscopeableMethod(); |
| 318 | 317 |
| 319 ClientRectList focusRingRects(Element element); | 318 ClientRectList focusRingRects(Element element); |
| 320 }; | 319 }; |
| OLD | NEW |