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: third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp

Issue 2366313006: CSS Properties and Values API: Support non-inherited custom properties (Closed)
Patch Set: use de morgan's law Created 4 years, 2 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 * Copyright (C) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 22 matching lines...) Expand all
33 #include "core/css/CSSComputedStyleDeclaration.h" 33 #include "core/css/CSSComputedStyleDeclaration.h"
34 #include "core/css/CSSDefaultStyleSheets.h" 34 #include "core/css/CSSDefaultStyleSheets.h"
35 #include "core/css/CSSGradientValue.h" 35 #include "core/css/CSSGradientValue.h"
36 #include "core/css/CSSImportRule.h" 36 #include "core/css/CSSImportRule.h"
37 #include "core/css/CSSKeyframeRule.h" 37 #include "core/css/CSSKeyframeRule.h"
38 #include "core/css/CSSMediaRule.h" 38 #include "core/css/CSSMediaRule.h"
39 #include "core/css/CSSRule.h" 39 #include "core/css/CSSRule.h"
40 #include "core/css/CSSRuleList.h" 40 #include "core/css/CSSRuleList.h"
41 #include "core/css/CSSStyleRule.h" 41 #include "core/css/CSSStyleRule.h"
42 #include "core/css/CSSStyleSheet.h" 42 #include "core/css/CSSStyleSheet.h"
43 #include "core/css/CSSVariableData.h"
43 #include "core/css/MediaList.h" 44 #include "core/css/MediaList.h"
44 #include "core/css/MediaQuery.h" 45 #include "core/css/MediaQuery.h"
45 #include "core/css/MediaValues.h" 46 #include "core/css/MediaValues.h"
46 #include "core/css/StylePropertySet.h" 47 #include "core/css/StylePropertySet.h"
47 #include "core/css/StyleRule.h" 48 #include "core/css/StyleRule.h"
48 #include "core/css/StyleSheet.h" 49 #include "core/css/StyleSheet.h"
49 #include "core/css/StyleSheetContents.h" 50 #include "core/css/StyleSheetContents.h"
50 #include "core/css/StyleSheetList.h" 51 #include "core/css/StyleSheetList.h"
51 #include "core/css/parser/CSSParser.h" 52 #include "core/css/parser/CSSParser.h"
52 #include "core/css/resolver/StyleResolver.h" 53 #include "core/css/resolver/StyleResolver.h"
(...skipping 15 matching lines...) Expand all
68 #include "core/layout/HitTestResult.h" 69 #include "core/layout/HitTestResult.h"
69 #include "core/layout/LayoutObject.h" 70 #include "core/layout/LayoutObject.h"
70 #include "core/layout/LayoutObjectInlines.h" 71 #include "core/layout/LayoutObjectInlines.h"
71 #include "core/layout/LayoutText.h" 72 #include "core/layout/LayoutText.h"
72 #include "core/layout/api/LayoutViewItem.h" 73 #include "core/layout/api/LayoutViewItem.h"
73 #include "core/layout/line/InlineTextBox.h" 74 #include "core/layout/line/InlineTextBox.h"
74 #include "core/loader/DocumentLoader.h" 75 #include "core/loader/DocumentLoader.h"
75 #include "core/page/Page.h" 76 #include "core/page/Page.h"
76 #include "core/style/StyleGeneratedImage.h" 77 #include "core/style/StyleGeneratedImage.h"
77 #include "core/style/StyleImage.h" 78 #include "core/style/StyleImage.h"
78 #include "core/style/StyleVariableData.h"
79 #include "core/svg/SVGElement.h" 79 #include "core/svg/SVGElement.h"
80 #include "platform/fonts/Font.h" 80 #include "platform/fonts/Font.h"
81 #include "platform/fonts/FontCache.h" 81 #include "platform/fonts/FontCache.h"
82 #include "platform/fonts/GlyphBuffer.h" 82 #include "platform/fonts/GlyphBuffer.h"
83 #include "platform/fonts/shaping/SimpleShaper.h" 83 #include "platform/fonts/shaping/SimpleShaper.h"
84 #include "platform/text/TextRun.h" 84 #include "platform/text/TextRun.h"
85 #include "wtf/CurrentTime.h" 85 #include "wtf/CurrentTime.h"
86 #include "wtf/text/CString.h" 86 #include "wtf/text/CString.h"
87 #include "wtf/text/StringConcatenate.h" 87 #include "wtf/text/StringConcatenate.h"
88 88
(...skipping 1948 matching lines...) Expand 10 before | Expand all | Expand 10 after
2037 visitor->trace(m_idToInspectorStyleSheetForInlineStyle); 2037 visitor->trace(m_idToInspectorStyleSheetForInlineStyle);
2038 visitor->trace(m_cssStyleSheetToInspectorStyleSheet); 2038 visitor->trace(m_cssStyleSheetToInspectorStyleSheet);
2039 visitor->trace(m_documentToCSSStyleSheets); 2039 visitor->trace(m_documentToCSSStyleSheets);
2040 visitor->trace(m_invalidatedDocuments); 2040 visitor->trace(m_invalidatedDocuments);
2041 visitor->trace(m_nodeToInspectorStyleSheet); 2041 visitor->trace(m_nodeToInspectorStyleSheet);
2042 visitor->trace(m_inspectorUserAgentStyleSheet); 2042 visitor->trace(m_inspectorUserAgentStyleSheet);
2043 InspectorBaseAgent::trace(visitor); 2043 InspectorBaseAgent::trace(visitor);
2044 } 2044 }
2045 2045
2046 } // namespace blink 2046 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp ('k') | third_party/WebKit/Source/core/style/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698