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

Side by Side Diff: Source/core/rendering/style/RenderStyleConstants.h

Issue 17155007: [CSS3] Parsing the property, text-justify. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parsingTextJustify
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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 TextDecorationStyleDouble, 350 TextDecorationStyleDouble,
351 TextDecorationStyleDotted, 351 TextDecorationStyleDotted,
352 TextDecorationStyleDashed, 352 TextDecorationStyleDashed,
353 TextDecorationStyleWavy 353 TextDecorationStyleWavy
354 }; 354 };
355 355
356 enum TextAlignLast { 356 enum TextAlignLast {
357 TextAlignLastAuto, TextAlignLastStart, TextAlignLastEnd, TextAlignLastLeft, TextAlignLastRight, TextAlignLastCenter, TextAlignLastJustify 357 TextAlignLastAuto, TextAlignLastStart, TextAlignLastEnd, TextAlignLastLeft, TextAlignLastRight, TextAlignLastCenter, TextAlignLastJustify
358 }; 358 };
359 359
360 enum TextJustify {
361 TextJustifyAuto, TextJustifyNone, TextJustifyInterWord, TextJustifyDistribut e
Julien - ping for review 2013/07/15 22:05:47 You should put a FIXME about the value you don't i
dw.im 2013/07/16 01:13:56 As you can see the very current editors draft of t
Julien - ping for review 2013/07/16 19:40:09 I stand corrected, my bad.
362 };
363
360 #if ENABLE(CSS3_TEXT) 364 #if ENABLE(CSS3_TEXT)
361 enum TextUnderlinePosition { 365 enum TextUnderlinePosition {
362 // FIXME: Implement support for 'under left' and 'under right' values. 366 // FIXME: Implement support for 'under left' and 'under right' values.
363 TextUnderlinePositionAuto = 0x1, TextUnderlinePositionAlphabetic = 0x2, Text UnderlinePositionUnder = 0x4 367 TextUnderlinePositionAuto = 0x1, TextUnderlinePositionAlphabetic = 0x2, Text UnderlinePositionUnder = 0x4
364 }; 368 };
365 #endif // CSS3_TEXT 369 #endif // CSS3_TEXT
366 370
367 enum EPageBreak { 371 enum EPageBreak {
368 PBAUTO, PBALWAYS, PBAVOID 372 PBAUTO, PBALWAYS, PBAVOID
369 }; 373 };
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 // Reasonable maximum to prevent insane font sizes from causing crashes on some platforms (such as Windows). 505 // Reasonable maximum to prevent insane font sizes from causing crashes on some platforms (such as Windows).
502 static const float maximumAllowedFontSize = 1000000.0f; 506 static const float maximumAllowedFontSize = 1000000.0f;
503 507
504 #if ENABLE(CSS3_TEXT) 508 #if ENABLE(CSS3_TEXT)
505 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; 509 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine };
506 #endif 510 #endif
507 511
508 } // namespace WebCore 512 } // namespace WebCore
509 513
510 #endif // RenderStyleConstants_h 514 #endif // RenderStyleConstants_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698