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

Side by Side Diff: Source/core/core.gypi

Issue 1023393002: Cache element indices for :nth-child and :nth-last-child selectors. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Missing initializer and incorrect assert. Created 5 years, 8 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
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 'core_generated.gypi', 3 'core_generated.gypi',
4 ], 4 ],
5 'variables': { 5 'variables': {
6 # Files for which bindings (.cpp and .h files) will be generated 6 # Files for which bindings (.cpp and .h files) will be generated
7 'core_idl_files': [ 7 'core_idl_files': [
8 'animation/Animation.idl', 8 'animation/Animation.idl',
9 'animation/AnimationEffect.idl', 9 'animation/AnimationEffect.idl',
10 'animation/AnimationNode.idl', 10 'animation/AnimationNode.idl',
(...skipping 2251 matching lines...) Expand 10 before | Expand all | Expand 10 after
2262 'dom/NodeListsNodeData.h', 2262 'dom/NodeListsNodeData.h',
2263 'dom/NodeRareData.cpp', 2263 'dom/NodeRareData.cpp',
2264 'dom/NodeRareData.h', 2264 'dom/NodeRareData.h',
2265 'dom/NodeRenderingTraversal.cpp', 2265 'dom/NodeRenderingTraversal.cpp',
2266 'dom/NodeRenderingTraversal.h', 2266 'dom/NodeRenderingTraversal.h',
2267 'dom/NodeTraversal.cpp', 2267 'dom/NodeTraversal.cpp',
2268 'dom/NodeTraversal.h', 2268 'dom/NodeTraversal.h',
2269 'dom/NodeWithIndex.h', 2269 'dom/NodeWithIndex.h',
2270 'dom/NonDocumentTypeChildNode.h', 2270 'dom/NonDocumentTypeChildNode.h',
2271 'dom/NonElementParentNode.h', 2271 'dom/NonElementParentNode.h',
2272 'dom/NthIndexCache.cpp',
2273 'dom/NthIndexCache.h',
2272 'dom/ParentNode.h', 2274 'dom/ParentNode.h',
2273 'dom/PendingScript.cpp', 2275 'dom/PendingScript.cpp',
2274 'dom/Position.cpp', 2276 'dom/Position.cpp',
2275 'dom/PositionIterator.cpp', 2277 'dom/PositionIterator.cpp',
2276 'dom/PositionIterator.h', 2278 'dom/PositionIterator.h',
2277 'dom/PresentationAttributeStyle.cpp', 2279 'dom/PresentationAttributeStyle.cpp',
2278 'dom/PresentationAttributeStyle.h', 2280 'dom/PresentationAttributeStyle.h',
2279 'dom/ProcessingInstruction.cpp', 2281 'dom/ProcessingInstruction.cpp',
2280 'dom/ProcessingInstruction.h', 2282 'dom/ProcessingInstruction.h',
2281 'dom/PseudoElement.cpp', 2283 'dom/PseudoElement.cpp',
(...skipping 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after
3741 'css/parser/MediaConditionTest.cpp', 3743 'css/parser/MediaConditionTest.cpp',
3742 'css/parser/SizesAttributeParserTest.cpp', 3744 'css/parser/SizesAttributeParserTest.cpp',
3743 'css/parser/SizesCalcParserTest.cpp', 3745 'css/parser/SizesCalcParserTest.cpp',
3744 'css/resolver/FontBuilderTest.cpp', 3746 'css/resolver/FontBuilderTest.cpp',
3745 'dom/ActiveDOMObjectTest.cpp', 3747 'dom/ActiveDOMObjectTest.cpp',
3746 'dom/CrossThreadTaskTest.cpp', 3748 'dom/CrossThreadTaskTest.cpp',
3747 'dom/DOMImplementationTest.cpp', 3749 'dom/DOMImplementationTest.cpp',
3748 'dom/DocumentMarkerControllerTest.cpp', 3750 'dom/DocumentMarkerControllerTest.cpp',
3749 'dom/DocumentTest.cpp', 3751 'dom/DocumentTest.cpp',
3750 'dom/MainThreadTaskRunnerTest.cpp', 3752 'dom/MainThreadTaskRunnerTest.cpp',
3753 'dom/NthIndexCacheTest.cpp',
3751 'dom/RangeTest.cpp', 3754 'dom/RangeTest.cpp',
3752 'dom/ScriptRunnerTest.cpp', 3755 'dom/ScriptRunnerTest.cpp',
3753 'dom/TreeScopeTest.cpp', 3756 'dom/TreeScopeTest.cpp',
3754 'dom/shadow/ComposedTreeTraversalTest.cpp', 3757 'dom/shadow/ComposedTreeTraversalTest.cpp',
3755 'editing/CompositionUnderlineRangeFilterTest.cpp', 3758 'editing/CompositionUnderlineRangeFilterTest.cpp',
3756 'editing/FrameSelectionTest.cpp', 3759 'editing/FrameSelectionTest.cpp',
3757 'editing/InputMethodControllerTest.cpp', 3760 'editing/InputMethodControllerTest.cpp',
3758 'editing/iterators/TextIteratorTest.cpp', 3761 'editing/iterators/TextIteratorTest.cpp',
3759 'editing/SurroundingTextTest.cpp', 3762 'editing/SurroundingTextTest.cpp',
3760 'editing/VisibleSelectionTest.cpp', 3763 'editing/VisibleSelectionTest.cpp',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
3815 'paint/LayerClipRecorderTest.cpp', 3818 'paint/LayerClipRecorderTest.cpp',
3816 'paint/LayoutObjectDrawingRecorderTest.cpp', 3819 'paint/LayoutObjectDrawingRecorderTest.cpp',
3817 'paint/TextPainterTest.cpp', 3820 'paint/TextPainterTest.cpp',
3818 'streams/ReadableStreamReaderTest.cpp', 3821 'streams/ReadableStreamReaderTest.cpp',
3819 'streams/ReadableStreamTest.cpp', 3822 'streams/ReadableStreamTest.cpp',
3820 'testing/PrivateScriptTestTest.cpp', 3823 'testing/PrivateScriptTestTest.cpp',
3821 'xml/parser/SharedBufferReaderTest.cpp', 3824 'xml/parser/SharedBufferReaderTest.cpp',
3822 ], 3825 ],
3823 } 3826 }
3824 } 3827 }
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/SelectorAPI/loose-subtree-nth-expected.txt ('k') | Source/core/css/SiblingTraversalStrategies.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698