| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 // CSS Animation / Transition testing. | 111 // CSS Animation / Transition testing. |
| 112 void pauseAnimations(double pauseTime, ExceptionState&); | 112 void pauseAnimations(double pauseTime, ExceptionState&); |
| 113 | 113 |
| 114 bool isValidContentSelect(Element* insertionPoint, ExceptionState&); | 114 bool isValidContentSelect(Element* insertionPoint, ExceptionState&); |
| 115 Node* treeScopeRootNode(Node*); | 115 Node* treeScopeRootNode(Node*); |
| 116 Node* parentTreeScope(Node*); | 116 Node* parentTreeScope(Node*); |
| 117 bool hasSelectorForIdInShadow(Element* host, const AtomicString& idValue, Ex
ceptionState&); | 117 bool hasSelectorForIdInShadow(Element* host, const AtomicString& idValue, Ex
ceptionState&); |
| 118 bool hasSelectorForClassInShadow(Element* host, const AtomicString& classNam
e, ExceptionState&); | 118 bool hasSelectorForClassInShadow(Element* host, const AtomicString& classNam
e, ExceptionState&); |
| 119 bool hasSelectorForAttributeInShadow(Element* host, const AtomicString& attr
ibuteName, ExceptionState&); | 119 bool hasSelectorForAttributeInShadow(Element* host, const AtomicString& attr
ibuteName, ExceptionState&); |
| 120 bool hasSelectorForPseudoClassInShadow(Element* host, const String& pseudoCl
ass, ExceptionState&); | |
| 121 unsigned short compareTreeScopePosition(const Node*, const Node*, ExceptionS
tate&) const; | 120 unsigned short compareTreeScopePosition(const Node*, const Node*, ExceptionS
tate&) const; |
| 122 | 121 |
| 123 Node* nextSiblingInComposedTree(Node*, ExceptionState&); | 122 Node* nextSiblingInComposedTree(Node*, ExceptionState&); |
| 124 Node* firstChildInComposedTree(Node*, ExceptionState&); | 123 Node* firstChildInComposedTree(Node*, ExceptionState&); |
| 125 Node* lastChildInComposedTree(Node*, ExceptionState&); | 124 Node* lastChildInComposedTree(Node*, ExceptionState&); |
| 126 Node* nextInComposedTree(Node*, ExceptionState&); | 125 Node* nextInComposedTree(Node*, ExceptionState&); |
| 127 Node* previousInComposedTree(Node*, ExceptionState&); | 126 Node* previousInComposedTree(Node*, ExceptionState&); |
| 128 | 127 |
| 129 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const; | 128 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const; |
| 130 unsigned needsLayoutCount(ExceptionState&) const; | 129 unsigned needsLayoutCount(ExceptionState&) const; |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 | 367 |
| 369 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 368 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 370 Member<InternalRuntimeFlags> m_runtimeFlags; | 369 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 371 | 370 |
| 372 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 371 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 373 }; | 372 }; |
| 374 | 373 |
| 375 } // namespace blink | 374 } // namespace blink |
| 376 | 375 |
| 377 #endif // Internals_h | 376 #endif // Internals_h |
| OLD | NEW |