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

Side by Side Diff: sky/engine/core/css/CSSComputedStyleDeclaration.cpp

Issue 1078883003: remove 'page' and 'size' since those are for printing, and that's obsolete in our world now (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: merge with trunk Created 5 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
« no previous file with comments | « no previous file | sky/engine/core/css/CSSProperties.in » ('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
(...skipping 2034 matching lines...) Expand 10 before | Expand all | Expand 10 after
2045 case CSSPropertyWebkitMaxLogicalWidth: 2045 case CSSPropertyWebkitMaxLogicalWidth:
2046 case CSSPropertyWebkitMaxLogicalHeight: 2046 case CSSPropertyWebkitMaxLogicalHeight:
2047 ASSERT_NOT_REACHED(); 2047 ASSERT_NOT_REACHED();
2048 break; 2048 break;
2049 2049
2050 /* Unimplemented @font-face properties */ 2050 /* Unimplemented @font-face properties */
2051 case CSSPropertySrc: 2051 case CSSPropertySrc:
2052 case CSSPropertyUnicodeRange: 2052 case CSSPropertyUnicodeRange:
2053 break; 2053 break;
2054 2054
2055 /* Other unimplemented properties */
2056 case CSSPropertyPage: // for @page
2057 case CSSPropertySize: // for @page
2058 break;
2059
2060 /* Unimplemented -webkit- properties */ 2055 /* Unimplemented -webkit- properties */
2061 case CSSPropertyWebkitBorderRadius: 2056 case CSSPropertyWebkitBorderRadius:
2062 case CSSPropertyWebkitPerspectiveOriginX: 2057 case CSSPropertyWebkitPerspectiveOriginX:
2063 case CSSPropertyWebkitPerspectiveOriginY: 2058 case CSSPropertyWebkitPerspectiveOriginY:
2064 case CSSPropertyWebkitTextStroke: 2059 case CSSPropertyWebkitTextStroke:
2065 case CSSPropertyWebkitTransformOriginX: 2060 case CSSPropertyWebkitTransformOriginX:
2066 case CSSPropertyWebkitTransformOriginY: 2061 case CSSPropertyWebkitTransformOriginY:
2067 case CSSPropertyWebkitTransformOriginZ: 2062 case CSSPropertyWebkitTransformOriginZ:
2068 break; 2063 break;
2069 2064
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
2239 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin, 2234 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin,
2240 CSSPropertyB ackgroundClip }; 2235 CSSPropertyB ackgroundClip };
2241 2236
2242 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); 2237 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated();
2243 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator)))); 2238 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator))));
2244 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator)))); 2239 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator))));
2245 return list.release(); 2240 return list.release();
2246 } 2241 }
2247 2242
2248 } // namespace blink 2243 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/css/CSSProperties.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698