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

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

Issue 106903009: Move page/RuntimeCSSEnabled to css/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
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
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 #include "core/css/CSSTransformValue.h" 52 #include "core/css/CSSTransformValue.h"
53 #include "core/css/CSSValueList.h" 53 #include "core/css/CSSValueList.h"
54 #include "core/css/CSSValuePool.h" 54 #include "core/css/CSSValuePool.h"
55 #include "core/css/Pair.h" 55 #include "core/css/Pair.h"
56 #include "core/css/Rect.h" 56 #include "core/css/Rect.h"
57 #include "core/css/StylePropertySet.h" 57 #include "core/css/StylePropertySet.h"
58 #include "core/css/resolver/StyleResolver.h" 58 #include "core/css/resolver/StyleResolver.h"
59 #include "core/dom/Document.h" 59 #include "core/dom/Document.h"
60 #include "core/dom/ExceptionCode.h" 60 #include "core/dom/ExceptionCode.h"
61 #include "core/dom/PseudoElement.h" 61 #include "core/dom/PseudoElement.h"
62 #include "core/page/RuntimeCSSEnabled.h" 62 #include "core/css/RuntimeCSSEnabled.h"
63 #include "core/frame/animation/AnimationController.h" 63 #include "core/frame/animation/AnimationController.h"
64 #include "core/rendering/RenderBox.h" 64 #include "core/rendering/RenderBox.h"
65 #include "core/rendering/RenderGrid.h" 65 #include "core/rendering/RenderGrid.h"
66 #include "core/rendering/RenderView.h" 66 #include "core/rendering/RenderView.h"
67 #include "core/rendering/style/ContentData.h" 67 #include "core/rendering/style/ContentData.h"
68 #include "core/rendering/style/CounterContent.h" 68 #include "core/rendering/style/CounterContent.h"
69 #include "core/rendering/style/CursorList.h" 69 #include "core/rendering/style/CursorList.h"
70 #include "core/rendering/style/RenderStyle.h" 70 #include "core/rendering/style/RenderStyle.h"
71 #include "core/rendering/style/ShadowList.h" 71 #include "core/rendering/style/ShadowList.h"
72 #include "core/rendering/style/ShapeValue.h" 72 #include "core/rendering/style/ShapeValue.h"
(...skipping 3157 matching lines...) Expand 10 before | Expand all | Expand 10 after
3230 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin, 3230 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin,
3231 CSSPropertyB ackgroundClip }; 3231 CSSPropertyB ackgroundClip };
3232 3232
3233 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); 3233 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated();
3234 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator)))); 3234 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator))));
3235 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator)))); 3235 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator))));
3236 return list.release(); 3236 return list.release();
3237 } 3237 }
3238 3238
3239 } // namespace WebCore 3239 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698