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

Side by Side Diff: Source/core/css/resolver/StyleBuilderCustom.cpp

Issue 19555002: Translate viewport related meta tags into @viewport descriptors as suggested by the CSS Device Adap… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
(...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after
1889 case CSSPropertyWidth: 1889 case CSSPropertyWidth:
1890 case CSSPropertyWordBreak: 1890 case CSSPropertyWordBreak:
1891 case CSSPropertyWordSpacing: 1891 case CSSPropertyWordSpacing:
1892 case CSSPropertyWordWrap: 1892 case CSSPropertyWordWrap:
1893 case CSSPropertyZIndex: 1893 case CSSPropertyZIndex:
1894 case CSSPropertyZoom: 1894 case CSSPropertyZoom:
1895 case CSSPropertyMaxZoom: 1895 case CSSPropertyMaxZoom:
1896 case CSSPropertyMinZoom: 1896 case CSSPropertyMinZoom:
1897 case CSSPropertyOrientation: 1897 case CSSPropertyOrientation:
1898 case CSSPropertyUserZoom: 1898 case CSSPropertyUserZoom:
1899 case CSSPropertyInternalPriority:
1900 case CSSPropertyInternalTargetDensity:
1899 case CSSPropertyFontFamily: 1901 case CSSPropertyFontFamily:
1900 case CSSPropertyGridAutoFlow: 1902 case CSSPropertyGridAutoFlow:
1901 case CSSPropertyMarker: 1903 case CSSPropertyMarker:
1902 ASSERT_NOT_REACHED(); 1904 ASSERT_NOT_REACHED();
1903 return; 1905 return;
1904 1906
1905 case CSSPropertyAlignmentBaseline: 1907 case CSSPropertyAlignmentBaseline:
1906 { 1908 {
1907 HANDLE_SVG_INHERIT_AND_INITIAL(alignmentBaseline, AlignmentBaseline) 1909 HANDLE_SVG_INHERIT_AND_INITIAL(alignmentBaseline, AlignmentBaseline)
1908 if (primitiveValue) 1910 if (primitiveValue)
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
2276 case CSSPropertyMaskType: { 2278 case CSSPropertyMaskType: {
2277 HANDLE_SVG_INHERIT_AND_INITIAL(maskType, MaskType) 2279 HANDLE_SVG_INHERIT_AND_INITIAL(maskType, MaskType)
2278 if (primitiveValue) 2280 if (primitiveValue)
2279 state.style()->accessSVGStyle()->setMaskType(*primitiveValue); 2281 state.style()->accessSVGStyle()->setMaskType(*primitiveValue);
2280 break; 2282 break;
2281 } 2283 }
2282 } 2284 }
2283 } 2285 }
2284 2286
2285 } // namespace WebCore 2287 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698