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

Side by Side Diff: Source/core/css/CSSProperty.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: Land patch upload resulted in python error 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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 case CSSPropertyCounterReset: 427 case CSSPropertyCounterReset:
428 case CSSPropertyDisplay: 428 case CSSPropertyDisplay:
429 case CSSPropertyDominantBaseline: 429 case CSSPropertyDominantBaseline:
430 case CSSPropertyEnableBackground: 430 case CSSPropertyEnableBackground:
431 case CSSPropertyFilter: 431 case CSSPropertyFilter:
432 case CSSPropertyFloat: 432 case CSSPropertyFloat:
433 case CSSPropertyFloodColor: 433 case CSSPropertyFloodColor:
434 case CSSPropertyFloodOpacity: 434 case CSSPropertyFloodOpacity:
435 case CSSPropertyFontStretch: 435 case CSSPropertyFontStretch:
436 case CSSPropertyHeight: 436 case CSSPropertyHeight:
437 case CSSPropertyInternalPriority:
438 case CSSPropertyInternalTargetDensity:
437 case CSSPropertyLeft: 439 case CSSPropertyLeft:
438 case CSSPropertyLightingColor: 440 case CSSPropertyLightingColor:
439 case CSSPropertyMargin: 441 case CSSPropertyMargin:
440 case CSSPropertyMarginBottom: 442 case CSSPropertyMarginBottom:
441 case CSSPropertyMarginLeft: 443 case CSSPropertyMarginLeft:
442 case CSSPropertyMarginRight: 444 case CSSPropertyMarginRight:
443 case CSSPropertyMarginTop: 445 case CSSPropertyMarginTop:
444 case CSSPropertyMask: 446 case CSSPropertyMask:
445 case CSSPropertyMaskType: 447 case CSSPropertyMaskType:
446 case CSSPropertyMaxHeight: 448 case CSSPropertyMaxHeight:
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 return false; 671 return false;
670 case CSSPropertyInvalid: 672 case CSSPropertyInvalid:
671 ASSERT_NOT_REACHED(); 673 ASSERT_NOT_REACHED();
672 return false; 674 return false;
673 } 675 }
674 ASSERT_NOT_REACHED(); 676 ASSERT_NOT_REACHED();
675 return false; 677 return false;
676 } 678 }
677 679
678 } // namespace WebCore 680 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698