OLD | NEW |
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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 CSSPropertyWebkitColumnRuleColor, | 356 CSSPropertyWebkitColumnRuleColor, |
357 CSSPropertyWebkitColumnRuleStyle, | 357 CSSPropertyWebkitColumnRuleStyle, |
358 CSSPropertyWebkitColumnRuleWidth, | 358 CSSPropertyWebkitColumnRuleWidth, |
359 CSSPropertyWebkitColumnBreakBefore, | 359 CSSPropertyWebkitColumnBreakBefore, |
360 CSSPropertyWebkitColumnBreakAfter, | 360 CSSPropertyWebkitColumnBreakAfter, |
361 CSSPropertyWebkitColumnBreakInside, | 361 CSSPropertyWebkitColumnBreakInside, |
362 CSSPropertyWebkitColumnWidth, | 362 CSSPropertyWebkitColumnWidth, |
363 CSSPropertyPageBreakAfter, | 363 CSSPropertyPageBreakAfter, |
364 CSSPropertyPageBreakBefore, | 364 CSSPropertyPageBreakBefore, |
365 CSSPropertyPageBreakInside, | 365 CSSPropertyPageBreakInside, |
366 CSSPropertyWebkitRegionBreakAfter, | |
367 CSSPropertyWebkitRegionBreakBefore, | |
368 CSSPropertyWebkitRegionBreakInside, | |
369 CSSPropertyTextAlign, | 366 CSSPropertyTextAlign, |
370 CSSPropertyTextAlignLast, | 367 CSSPropertyTextAlignLast, |
371 CSSPropertyTextIndent, | 368 CSSPropertyTextIndent, |
372 CSSPropertyTextJustify, | 369 CSSPropertyTextJustify, |
373 CSSPropertyWidows | 370 CSSPropertyWidows |
374 }; | 371 }; |
375 | 372 |
376 static const Vector<CSSPropertyID>& blockProperties() | 373 static const Vector<CSSPropertyID>& blockProperties() |
377 { | 374 { |
378 DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ()); | 375 DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ()); |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 result.appendLiteral(": "); | 552 result.appendLiteral(": "); |
556 result.append(propertyValue()->cssText()); | 553 result.append(propertyValue()->cssText()); |
557 if (isImportant()) | 554 if (isImportant()) |
558 result.appendLiteral(" !important"); | 555 result.appendLiteral(" !important"); |
559 result.append(';'); | 556 result.append(';'); |
560 return result.toString(); | 557 return result.toString(); |
561 } | 558 } |
562 | 559 |
563 | 560 |
564 } // namespace WebCore | 561 } // namespace WebCore |
OLD | NEW |