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

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

Issue 143323014: *** DO NOT LAND *** Attempt to understand Regions complexity Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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
« no previous file with comments | « Source/core/css/StyleInvalidationAnalysis.cpp ('k') | Source/core/css/StyleRule.h » ('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, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved.
4 * Copyright (C) 2011 Research In Motion Limited. All rights reserved. 4 * Copyright (C) 2011 Research In Motion Limited. All rights reserved.
5 * Copyright (C) 2013 Intel Corporation. All rights reserved. 5 * Copyright (C) 2013 Intel Corporation. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 CSSPropertyWebkitColumnRuleColor, 405 CSSPropertyWebkitColumnRuleColor,
406 CSSPropertyWebkitColumnRuleStyle, 406 CSSPropertyWebkitColumnRuleStyle,
407 CSSPropertyWebkitColumnRuleWidth, 407 CSSPropertyWebkitColumnRuleWidth,
408 CSSPropertyWebkitColumnBreakBefore, 408 CSSPropertyWebkitColumnBreakBefore,
409 CSSPropertyWebkitColumnBreakAfter, 409 CSSPropertyWebkitColumnBreakAfter,
410 CSSPropertyWebkitColumnBreakInside, 410 CSSPropertyWebkitColumnBreakInside,
411 CSSPropertyWebkitColumnWidth, 411 CSSPropertyWebkitColumnWidth,
412 CSSPropertyPageBreakAfter, 412 CSSPropertyPageBreakAfter,
413 CSSPropertyPageBreakBefore, 413 CSSPropertyPageBreakBefore,
414 CSSPropertyPageBreakInside, 414 CSSPropertyPageBreakInside,
415 CSSPropertyWebkitRegionBreakAfter,
416 CSSPropertyWebkitRegionBreakBefore,
417 CSSPropertyWebkitRegionBreakInside,
418 CSSPropertyTextAlign, 415 CSSPropertyTextAlign,
419 CSSPropertyTextAlignLast, 416 CSSPropertyTextAlignLast,
420 CSSPropertyTextIndent, 417 CSSPropertyTextIndent,
421 CSSPropertyTextJustify, 418 CSSPropertyTextJustify,
422 CSSPropertyWidows 419 CSSPropertyWidows
423 }; 420 };
424 421
425 static const Vector<CSSPropertyID>& blockProperties() 422 static const Vector<CSSPropertyID>& blockProperties()
426 { 423 {
427 DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ()); 424 DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ());
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 result.appendLiteral(": "); 634 result.appendLiteral(": ");
638 result.append(propertyValue()->cssText()); 635 result.append(propertyValue()->cssText());
639 if (isImportant()) 636 if (isImportant())
640 result.appendLiteral(" !important"); 637 result.appendLiteral(" !important");
641 result.append(';'); 638 result.append(';');
642 return result.toString(); 639 return result.toString();
643 } 640 }
644 641
645 642
646 } // namespace WebCore 643 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/StyleInvalidationAnalysis.cpp ('k') | Source/core/css/StyleRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698