Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: Source/core/testing/Internals.h

Issue 1129673002: Remove support for pseudo classes in <content select>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix more tests. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698