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

Side by Side Diff: sky/engine/core/css/parser/CSSPropertyParser.cpp

Issue 780483002: Remove the CSSOM. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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 | « sky/engine/core/css/parser/CSSGrammar.y ('k') | sky/engine/core/css/parser/CSSTokenizer-in.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) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
9 * Copyright (C) 2012 Intel Corporation. All rights reserved. 9 * Copyright (C) 2012 Intel Corporation. All rights reserved.
10 * 10 *
(...skipping 28 matching lines...) Expand all
39 #include "sky/engine/core/css/CSSCrossfadeValue.h" 39 #include "sky/engine/core/css/CSSCrossfadeValue.h"
40 #include "sky/engine/core/css/CSSCursorImageValue.h" 40 #include "sky/engine/core/css/CSSCursorImageValue.h"
41 #include "sky/engine/core/css/CSSFontFaceSrcValue.h" 41 #include "sky/engine/core/css/CSSFontFaceSrcValue.h"
42 #include "sky/engine/core/css/CSSFontFeatureValue.h" 42 #include "sky/engine/core/css/CSSFontFeatureValue.h"
43 #include "sky/engine/core/css/CSSFunctionValue.h" 43 #include "sky/engine/core/css/CSSFunctionValue.h"
44 #include "sky/engine/core/css/CSSGradientValue.h" 44 #include "sky/engine/core/css/CSSGradientValue.h"
45 #include "sky/engine/core/css/CSSImageSetValue.h" 45 #include "sky/engine/core/css/CSSImageSetValue.h"
46 #include "sky/engine/core/css/CSSImageValue.h" 46 #include "sky/engine/core/css/CSSImageValue.h"
47 #include "sky/engine/core/css/CSSInheritedValue.h" 47 #include "sky/engine/core/css/CSSInheritedValue.h"
48 #include "sky/engine/core/css/CSSInitialValue.h" 48 #include "sky/engine/core/css/CSSInitialValue.h"
49 #include "sky/engine/core/css/CSSKeyframeRule.h"
50 #include "sky/engine/core/css/CSSKeyframesRule.h"
51 #include "sky/engine/core/css/CSSLineBoxContainValue.h" 49 #include "sky/engine/core/css/CSSLineBoxContainValue.h"
52 #include "sky/engine/core/css/CSSPrimitiveValue.h" 50 #include "sky/engine/core/css/CSSPrimitiveValue.h"
53 #include "sky/engine/core/css/CSSPropertyMetadata.h" 51 #include "sky/engine/core/css/CSSPropertyMetadata.h"
54 #include "sky/engine/core/css/CSSPropertySourceData.h" 52 #include "sky/engine/core/css/CSSPropertySourceData.h"
55 #include "sky/engine/core/css/CSSSelector.h" 53 #include "sky/engine/core/css/CSSSelector.h"
56 #include "sky/engine/core/css/CSSShadowValue.h" 54 #include "sky/engine/core/css/CSSShadowValue.h"
57 #include "sky/engine/core/css/CSSTimingFunctionValue.h" 55 #include "sky/engine/core/css/CSSTimingFunctionValue.h"
58 #include "sky/engine/core/css/CSSTransformValue.h" 56 #include "sky/engine/core/css/CSSTransformValue.h"
59 #include "sky/engine/core/css/CSSUnicodeRangeValue.h" 57 #include "sky/engine/core/css/CSSUnicodeRangeValue.h"
60 #include "sky/engine/core/css/CSSValueList.h" 58 #include "sky/engine/core/css/CSSValueList.h"
(...skipping 6137 matching lines...) Expand 10 before | Expand all | Expand 10 after
6198 || equalIgnoringCase(token, "n") || equalIgnoringCase(token, "-n"); 6196 || equalIgnoringCase(token, "n") || equalIgnoringCase(token, "-n");
6199 } 6197 }
6200 6198
6201 bool CSSPropertyParser::isSystemColor(int id) 6199 bool CSSPropertyParser::isSystemColor(int id)
6202 { 6200 {
6203 // FIXME(sky): remove 6201 // FIXME(sky): remove
6204 return false; 6202 return false;
6205 } 6203 }
6206 6204
6207 } // namespace blink 6205 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/css/parser/CSSGrammar.y ('k') | sky/engine/core/css/parser/CSSTokenizer-in.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698