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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp

Issue 2509593002: Implement ::placeholder CSS selector. (Closed)
Patch Set: <!DOCTYPE html> Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/core/css/parser/CSSParserSelector.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/inspector/InspectorTraceEvents.h" 5 #include "core/inspector/InspectorTraceEvents.h"
6 6
7 #include "bindings/core/v8/ScriptSourceCode.h" 7 #include "bindings/core/v8/ScriptSourceCode.h"
8 #include "bindings/core/v8/SourceLocation.h" 8 #include "bindings/core/v8/SourceLocation.h"
9 #include "core/animation/Animation.h" 9 #include "core/animation/Animation.h"
10 #include "core/animation/KeyframeEffectReadOnly.h" 10 #include "core/animation/KeyframeEffectReadOnly.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 DEFINE_STRING_MAPPING(PseudoReadWrite) 112 DEFINE_STRING_MAPPING(PseudoReadWrite)
113 DEFINE_STRING_MAPPING(PseudoValid) 113 DEFINE_STRING_MAPPING(PseudoValid)
114 DEFINE_STRING_MAPPING(PseudoInvalid) 114 DEFINE_STRING_MAPPING(PseudoInvalid)
115 DEFINE_STRING_MAPPING(PseudoIndeterminate) 115 DEFINE_STRING_MAPPING(PseudoIndeterminate)
116 DEFINE_STRING_MAPPING(PseudoTarget) 116 DEFINE_STRING_MAPPING(PseudoTarget)
117 DEFINE_STRING_MAPPING(PseudoBefore) 117 DEFINE_STRING_MAPPING(PseudoBefore)
118 DEFINE_STRING_MAPPING(PseudoAfter) 118 DEFINE_STRING_MAPPING(PseudoAfter)
119 DEFINE_STRING_MAPPING(PseudoBackdrop) 119 DEFINE_STRING_MAPPING(PseudoBackdrop)
120 DEFINE_STRING_MAPPING(PseudoLang) 120 DEFINE_STRING_MAPPING(PseudoLang)
121 DEFINE_STRING_MAPPING(PseudoNot) 121 DEFINE_STRING_MAPPING(PseudoNot)
122 DEFINE_STRING_MAPPING(PseudoPlaceholder)
122 DEFINE_STRING_MAPPING(PseudoResizer) 123 DEFINE_STRING_MAPPING(PseudoResizer)
123 DEFINE_STRING_MAPPING(PseudoRoot) 124 DEFINE_STRING_MAPPING(PseudoRoot)
124 DEFINE_STRING_MAPPING(PseudoScope) 125 DEFINE_STRING_MAPPING(PseudoScope)
125 DEFINE_STRING_MAPPING(PseudoScrollbar) 126 DEFINE_STRING_MAPPING(PseudoScrollbar)
126 DEFINE_STRING_MAPPING(PseudoScrollbarButton) 127 DEFINE_STRING_MAPPING(PseudoScrollbarButton)
127 DEFINE_STRING_MAPPING(PseudoScrollbarCorner) 128 DEFINE_STRING_MAPPING(PseudoScrollbarCorner)
128 DEFINE_STRING_MAPPING(PseudoScrollbarThumb) 129 DEFINE_STRING_MAPPING(PseudoScrollbarThumb)
129 DEFINE_STRING_MAPPING(PseudoScrollbarTrack) 130 DEFINE_STRING_MAPPING(PseudoScrollbarTrack)
130 DEFINE_STRING_MAPPING(PseudoScrollbarTrackPiece) 131 DEFINE_STRING_MAPPING(PseudoScrollbarTrackPiece)
131 DEFINE_STRING_MAPPING(PseudoWindowInactive) 132 DEFINE_STRING_MAPPING(PseudoWindowInactive)
(...skipping 920 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 if (request.move()) 1053 if (request.move())
1053 value->setBoolean("move", true); 1054 value->setBoolean("move", true);
1054 if (request.listBased()) 1055 if (request.listBased())
1055 value->setBoolean("listBased", true); 1056 value->setBoolean("listBased", true);
1056 else if (Node* node = result.innerNode()) 1057 else if (Node* node = result.innerNode())
1057 setNodeInfo(value.get(), node, "nodeId", "nodeName"); 1058 setNodeInfo(value.get(), node, "nodeId", "nodeName");
1058 return value; 1059 return value;
1059 } 1060 }
1060 1061
1061 } // namespace blink 1062 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/parser/CSSParserSelector.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698