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

Side by Side Diff: Source/core/css/StyleResolver.cpp

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/StylePropertySet.cpp ('k') | Source/core/css/StyleRule.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 11 matching lines...) Expand all
22 * 22 *
23 * You should have received a copy of the GNU Library General Public License 23 * You should have received a copy of the GNU Library General Public License
24 * along with this library; see the file COPYING.LIB. If not, write to 24 * along with this library; see the file COPYING.LIB. If not, write to
25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 * Boston, MA 02110-1301, USA. 26 * Boston, MA 02110-1301, USA.
27 */ 27 */
28 28
29 #include "config.h" 29 #include "config.h"
30 #include "core/css/StyleResolver.h" 30 #include "core/css/StyleResolver.h"
31 31
32 #include "Attribute.h"
33 #include "CSSPropertyNames.h" 32 #include "CSSPropertyNames.h"
34 #include "ContextFeatures.h"
35 #include "DocumentStyleSheetCollection.h"
36 #include "ElementShadow.h"
37 #include "HTMLDocument.h" 33 #include "HTMLDocument.h"
38 #include "HTMLIFrameElement.h" 34 #include "HTMLIFrameElement.h"
39 #include "HTMLInputElement.h" 35 #include "HTMLInputElement.h"
40 #include "HTMLNames.h" 36 #include "HTMLNames.h"
41 #include "HTMLOptionElement.h" 37 #include "HTMLOptionElement.h"
42 #include "HTMLProgressElement.h" 38 #include "HTMLProgressElement.h"
43 #include "HTMLStyleElement.h" 39 #include "HTMLStyleElement.h"
44 #include "HTMLTextAreaElement.h" 40 #include "HTMLTextAreaElement.h"
45 #include "InsertionPoint.h" 41 #include "InsertionPoint.h"
46 #include "InspectorInstrumentation.h" 42 #include "InspectorInstrumentation.h"
47 #include "MathMLNames.h" 43 #include "MathMLNames.h"
48 #include "NodeRenderStyle.h"
49 #include "NodeRenderingContext.h"
50 #include "SVGDocumentExtensions.h" 44 #include "SVGDocumentExtensions.h"
51 #include "SVGFontFaceElement.h" 45 #include "SVGFontFaceElement.h"
52 #include "ShadowRoot.h"
53 #include "Text.h"
54 #include "UserAgentStyleSheets.h" 46 #include "UserAgentStyleSheets.h"
55 #include "VisitedLinkState.h"
56 #include "WebCoreMemoryInstrumentation.h"
57 #include "WebKitFontFamilyNames.h" 47 #include "WebKitFontFamilyNames.h"
58 #include "XMLNames.h" 48 #include "XMLNames.h"
59 #include "core/css/CSSBorderImage.h" 49 #include "core/css/CSSBorderImage.h"
60 #include "core/css/CSSCalculationValue.h" 50 #include "core/css/CSSCalculationValue.h"
61 #include "core/css/CSSCursorImageValue.h" 51 #include "core/css/CSSCursorImageValue.h"
62 #include "core/css/CSSDefaultStyleSheets.h" 52 #include "core/css/CSSDefaultStyleSheets.h"
63 #include "core/css/CSSFontFaceRule.h" 53 #include "core/css/CSSFontFaceRule.h"
64 #include "core/css/CSSFontSelector.h" 54 #include "core/css/CSSFontSelector.h"
65 #include "core/css/CSSLineBoxContainValue.h" 55 #include "core/css/CSSLineBoxContainValue.h"
66 #include "core/css/CSSPageRule.h" 56 #include "core/css/CSSPageRule.h"
(...skipping 24 matching lines...) Expand all
91 #include "core/css/StylePropertyShorthand.h" 81 #include "core/css/StylePropertyShorthand.h"
92 #include "core/css/StyleRule.h" 82 #include "core/css/StyleRule.h"
93 #include "core/css/StyleRuleImport.h" 83 #include "core/css/StyleRuleImport.h"
94 #include "core/css/StyleSheetContents.h" 84 #include "core/css/StyleSheetContents.h"
95 #include "core/css/StyleSheetList.h" 85 #include "core/css/StyleSheetList.h"
96 #include "core/css/ViewportStyleResolver.h" 86 #include "core/css/ViewportStyleResolver.h"
97 #include "core/css/WebKitCSSKeyframeRule.h" 87 #include "core/css/WebKitCSSKeyframeRule.h"
98 #include "core/css/WebKitCSSKeyframesRule.h" 88 #include "core/css/WebKitCSSKeyframesRule.h"
99 #include "core/css/WebKitCSSRegionRule.h" 89 #include "core/css/WebKitCSSRegionRule.h"
100 #include "core/css/WebKitCSSTransformValue.h" 90 #include "core/css/WebKitCSSTransformValue.h"
91 #include "core/dom/Attribute.h"
92 #include "core/dom/ContextFeatures.h"
93 #include "core/dom/DocumentStyleSheetCollection.h"
94 #include "core/dom/ElementShadow.h"
95 #include "core/dom/NodeRenderStyle.h"
96 #include "core/dom/NodeRenderingContext.h"
97 #include "core/dom/ShadowRoot.h"
98 #include "core/dom/Text.h"
99 #include "core/dom/VisitedLinkState.h"
100 #include "core/dom/WebCoreMemoryInstrumentation.h"
101 #include "core/editing/FrameSelection.h" 101 #include "core/editing/FrameSelection.h"
102 #include "core/loader/cache/CachedImage.h" 102 #include "core/loader/cache/CachedImage.h"
103 #include "core/page/Frame.h" 103 #include "core/page/Frame.h"
104 #include "core/page/FrameView.h" 104 #include "core/page/FrameView.h"
105 #include "core/page/Page.h" 105 #include "core/page/Page.h"
106 #include "core/page/SecurityOrigin.h" 106 #include "core/page/SecurityOrigin.h"
107 #include "core/page/Settings.h" 107 #include "core/page/Settings.h"
108 #include "core/platform/CalculationValue.h" 108 #include "core/platform/CalculationValue.h"
109 #include "core/platform/LinkHash.h" 109 #include "core/platform/LinkHash.h"
110 #include "core/platform/graphics/transforms/Matrix3DTransformOperation.h" 110 #include "core/platform/graphics/transforms/Matrix3DTransformOperation.h"
(...skipping 4533 matching lines...) Expand 10 before | Expand all | Expand 10 after
4644 info.addMember(m_state, "state"); 4644 info.addMember(m_state, "state");
4645 4645
4646 // FIXME: move this to a place where it would be called only once? 4646 // FIXME: move this to a place where it would be called only once?
4647 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); 4647 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle");
4648 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl e"); 4648 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl e");
4649 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle") ; 4649 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle") ;
4650 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo urceStyle"); 4650 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo urceStyle");
4651 } 4651 }
4652 4652
4653 } // namespace WebCore 4653 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/StylePropertySet.cpp ('k') | Source/core/css/StyleRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698