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

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

Issue 14471017: Absolutify paths to page/animation, page/scrolling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/core.gyp/core.gyp ('k') | Source/core/dom/Document.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) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version. 11 * version 2 of the License, or (at your option) any later version.
12 * 12 *
13 * This library is distributed in the hope that it will be useful, 13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details. 16 * Lesser General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software 19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA 21 * 02110-1301 USA
22 */ 22 */
23 23
24 #include "config.h" 24 #include "config.h"
25 #include "CSSComputedStyleDeclaration.h" 25 #include "CSSComputedStyleDeclaration.h"
26 26
27 #include "AnimationController.h"
28 #include "BasicShapeFunctions.h" 27 #include "BasicShapeFunctions.h"
29 #include "CSSAspectRatioValue.h" 28 #include "CSSAspectRatioValue.h"
30 #include "CSSBasicShapes.h" 29 #include "CSSBasicShapes.h"
31 #include "CSSBorderImage.h" 30 #include "CSSBorderImage.h"
32 #include "CSSFunctionValue.h" 31 #include "CSSFunctionValue.h"
33 #include "CSSLineBoxContainValue.h" 32 #include "CSSLineBoxContainValue.h"
34 #include "CSSParser.h" 33 #include "CSSParser.h"
35 #include "CSSPrimitiveValue.h" 34 #include "CSSPrimitiveValue.h"
36 #include "CSSPrimitiveValueMappings.h" 35 #include "CSSPrimitiveValueMappings.h"
37 #include "CSSPropertyNames.h" 36 #include "CSSPropertyNames.h"
(...skipping 10 matching lines...) Expand all
48 #include "Pair.h" 47 #include "Pair.h"
49 #include "PseudoElement.h" 48 #include "PseudoElement.h"
50 #include "Rect.h" 49 #include "Rect.h"
51 #include "ShadowValue.h" 50 #include "ShadowValue.h"
52 #include "StylePropertySet.h" 51 #include "StylePropertySet.h"
53 #include "StylePropertyShorthand.h" 52 #include "StylePropertyShorthand.h"
54 #include "StyleResolver.h" 53 #include "StyleResolver.h"
55 #include "WebCoreMemoryInstrumentation.h" 54 #include "WebCoreMemoryInstrumentation.h"
56 #include "WebKitCSSTransformValue.h" 55 #include "WebKitCSSTransformValue.h"
57 #include "WebKitFontFamilyNames.h" 56 #include "WebKitFontFamilyNames.h"
57 #include "core/page/animation/AnimationController.h"
58 #include "core/platform/graphics/FontFeatureSettings.h" 58 #include "core/platform/graphics/FontFeatureSettings.h"
59 #include "core/rendering/RenderBox.h" 59 #include "core/rendering/RenderBox.h"
60 #include "core/rendering/RenderView.h" 60 #include "core/rendering/RenderView.h"
61 #include "core/rendering/style/BasicShapes.h" 61 #include "core/rendering/style/BasicShapes.h"
62 #include "core/rendering/style/ContentData.h" 62 #include "core/rendering/style/ContentData.h"
63 #include "core/rendering/style/CounterContent.h" 63 #include "core/rendering/style/CounterContent.h"
64 #include "core/rendering/style/CursorList.h" 64 #include "core/rendering/style/CursorList.h"
65 #include "core/rendering/style/RenderStyle.h" 65 #include "core/rendering/style/RenderStyle.h"
66 #include "core/rendering/style/StyleInheritedData.h" 66 #include "core/rendering/style/StyleInheritedData.h"
67 #include <wtf/text/StringBuilder.h> 67 #include <wtf/text/StringBuilder.h>
(...skipping 2921 matching lines...) Expand 10 before | Expand all | Expand 10 after
2989 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin, 2989 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin,
2990 CSSPropertyB ackgroundClip }; 2990 CSSPropertyB ackgroundClip };
2991 2991
2992 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); 2992 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated();
2993 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha nd(propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlashSeperat or)))); 2993 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha nd(propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlashSeperat or))));
2994 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha nd(propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSeperator )))); 2994 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha nd(propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSeperator ))));
2995 return list.release(); 2995 return list.release();
2996 } 2996 }
2997 2997
2998 } // namespace WebCore 2998 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/core.gyp/core.gyp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698