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

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

Issue 40733004: Replace compile flag with runtime check for text-underline-position (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Julien's review #2 (rebased) Created 7 years, 1 month 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
« no previous file with comments | « Source/core/css/CSSProperties.in ('k') | Source/core/css/CSSPropertyNames.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 * (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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 case CSSPropertyWebkitLineAlign: 332 case CSSPropertyWebkitLineAlign:
333 case CSSPropertyWebkitLineBoxContain: 333 case CSSPropertyWebkitLineBoxContain:
334 case CSSPropertyWebkitLineBreak: 334 case CSSPropertyWebkitLineBreak:
335 case CSSPropertyWebkitLineGrid: 335 case CSSPropertyWebkitLineGrid:
336 case CSSPropertyWebkitLineSnap: 336 case CSSPropertyWebkitLineSnap:
337 case CSSPropertyWebkitPrintColorAdjust: 337 case CSSPropertyWebkitPrintColorAdjust:
338 case CSSPropertyWebkitRtlOrdering: 338 case CSSPropertyWebkitRtlOrdering:
339 case CSSPropertyWebkitRubyPosition: 339 case CSSPropertyWebkitRubyPosition:
340 case CSSPropertyWebkitTapHighlightColor: 340 case CSSPropertyWebkitTapHighlightColor:
341 case CSSPropertyWebkitTextCombine: 341 case CSSPropertyWebkitTextCombine:
342 #if ENABLE(CSS3_TEXT) 342 case CSSPropertyTextUnderlinePosition:
343 case CSSPropertyWebkitTextUnderlinePosition:
344 #endif // CSS3_TEXT
345 case CSSPropertyWebkitTextDecorationsInEffect: 343 case CSSPropertyWebkitTextDecorationsInEffect:
346 case CSSPropertyWebkitTextEmphasis: 344 case CSSPropertyWebkitTextEmphasis:
347 case CSSPropertyWebkitTextEmphasisColor: 345 case CSSPropertyWebkitTextEmphasisColor:
348 case CSSPropertyWebkitTextEmphasisPosition: 346 case CSSPropertyWebkitTextEmphasisPosition:
349 case CSSPropertyWebkitTextEmphasisStyle: 347 case CSSPropertyWebkitTextEmphasisStyle:
350 case CSSPropertyWebkitTextFillColor: 348 case CSSPropertyWebkitTextFillColor:
351 case CSSPropertyWebkitTextOrientation: 349 case CSSPropertyWebkitTextOrientation:
352 case CSSPropertyWebkitTextSecurity: 350 case CSSPropertyWebkitTextSecurity:
353 case CSSPropertyWebkitTextStroke: 351 case CSSPropertyWebkitTextStroke:
354 case CSSPropertyWebkitTextStrokeColor: 352 case CSSPropertyWebkitTextStrokeColor:
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 return false; 681 return false;
684 case CSSPropertyInvalid: 682 case CSSPropertyInvalid:
685 ASSERT_NOT_REACHED(); 683 ASSERT_NOT_REACHED();
686 return false; 684 return false;
687 } 685 }
688 ASSERT_NOT_REACHED(); 686 ASSERT_NOT_REACHED();
689 return false; 687 return false;
690 } 688 }
691 689
692 } // namespace WebCore 690 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSProperties.in ('k') | Source/core/css/CSSPropertyNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698