| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 [RaisesException, TypeChecking=Interface] boolean hasSelectorForClassInShado
w(Element host, DOMString className); | 61 [RaisesException, TypeChecking=Interface] boolean hasSelectorForClassInShado
w(Element host, DOMString className); |
| 62 [RaisesException, TypeChecking=Interface] boolean hasSelectorForAttributeInS
hadow(Element host, DOMString attributeName); | 62 [RaisesException, TypeChecking=Interface] boolean hasSelectorForAttributeInS
hadow(Element host, DOMString attributeName); |
| 63 [RaisesException, TypeChecking=Interface] unsigned short compareTreeScopePos
ition(Node treeScope1, Node treeScope2); | 63 [RaisesException, TypeChecking=Interface] unsigned short compareTreeScopePos
ition(Node treeScope1, Node treeScope2); |
| 64 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount(); | 64 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount(); |
| 65 [RaisesException] unsigned long needsLayoutCount(); | 65 [RaisesException] unsigned long needsLayoutCount(); |
| 66 [RaisesException] unsigned long hitTestCount(Document document); | 66 [RaisesException] unsigned long hitTestCount(Document document); |
| 67 [RaisesException] unsigned long hitTestCacheHits(Document document); | 67 [RaisesException] unsigned long hitTestCacheHits(Document document); |
| 68 [RaisesException] Element? elementFromPoint(Document document, double x, dou
ble y, boolean ignoreClipping, boolean allowChildFrameContent); | 68 [RaisesException] Element? elementFromPoint(Document document, double x, dou
ble y, boolean ignoreClipping, boolean allowChildFrameContent); |
| 69 [RaisesException] void clearHitTestCache(Document document); | 69 [RaisesException] void clearHitTestCache(Document document); |
| 70 | 70 |
| 71 // CSS Animation and Transition testing. | 71 // Animation testing. |
| 72 [RaisesException] void pauseAnimations(double pauseTime); | 72 [RaisesException] void pauseAnimations(double pauseTime); |
| 73 bool isCompositedAnimation(Animation animation); |
| 73 | 74 |
| 74 // Modifies m_desiredFrameStartTime in BitmapImage to advance the next frame
time | 75 // Modifies m_desiredFrameStartTime in BitmapImage to advance the next frame
time |
| 75 // for testing whether animated images work properly. | 76 // for testing whether animated images work properly. |
| 76 [RaisesException] void advanceTimeForImage(Element image, double deltaTimeIn
Seconds); | 77 [RaisesException] void advanceTimeForImage(Element image, double deltaTimeIn
Seconds); |
| 77 | 78 |
| 78 [RaisesException, TypeChecking=Interface] Node nextSiblingInComposedTree(Nod
e node); | 79 [RaisesException, TypeChecking=Interface] Node nextSiblingInComposedTree(Nod
e node); |
| 79 [RaisesException, TypeChecking=Interface] Node firstChildInComposedTree(Node
node); | 80 [RaisesException, TypeChecking=Interface] Node firstChildInComposedTree(Node
node); |
| 80 [RaisesException, TypeChecking=Interface] Node lastChildInComposedTree(Node
node); | 81 [RaisesException, TypeChecking=Interface] Node lastChildInComposedTree(Node
node); |
| 81 [RaisesException, TypeChecking=Interface] Node nextInComposedTree(Node node)
; | 82 [RaisesException, TypeChecking=Interface] Node nextInComposedTree(Node node)
; |
| 82 [RaisesException, TypeChecking=Interface] Node previousInComposedTree(Node n
ode); | 83 [RaisesException, TypeChecking=Interface] Node previousInComposedTree(Node n
ode); |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 boolean isUseCounted(Document document, long useCounterId); | 318 boolean isUseCounted(Document document, long useCounterId); |
| 318 | 319 |
| 319 iterable<long>; | 320 iterable<long>; |
| 320 | 321 |
| 321 [Unscopeable] readonly attribute DOMString unscopeableAttribute; | 322 [Unscopeable] readonly attribute DOMString unscopeableAttribute; |
| 322 [Unscopeable] DOMString unscopeableMethod(); | 323 [Unscopeable] DOMString unscopeableMethod(); |
| 323 | 324 |
| 324 ClientRectList focusRingRects(Element element); | 325 ClientRectList focusRingRects(Element element); |
| 325 void setCapsLockState(boolean enabled); | 326 void setCapsLockState(boolean enabled); |
| 326 }; | 327 }; |
| OLD | NEW |