Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 300 Katakana, | 300 Katakana, |
| 301 HiraganaIroha, | 301 HiraganaIroha, |
| 302 KatakanaIroha, | 302 KatakanaIroha, |
| 303 NoneListStyle | 303 NoneListStyle |
| 304 }; | 304 }; |
| 305 | 305 |
| 306 enum QuoteType { | 306 enum QuoteType { |
| 307 OPEN_QUOTE, CLOSE_QUOTE, NO_OPEN_QUOTE, NO_CLOSE_QUOTE | 307 OPEN_QUOTE, CLOSE_QUOTE, NO_OPEN_QUOTE, NO_CLOSE_QUOTE |
| 308 }; | 308 }; |
| 309 | 309 |
| 310 enum ElementContent { | |
|
nainar
2016/03/21 00:12:08
Better(?) name: ElementContentValue
Also added an
| |
| 311 ContentDataNone, ContentDataNormal | |
| 312 }; | |
| 313 | |
| 310 enum EAnimPlayState { | 314 enum EAnimPlayState { |
| 311 AnimPlayStatePlaying, | 315 AnimPlayStatePlaying, |
| 312 AnimPlayStatePaused | 316 AnimPlayStatePaused |
| 313 }; | 317 }; |
| 314 | 318 |
| 315 enum EWhiteSpace { | 319 enum EWhiteSpace { |
| 316 NORMAL, PRE, PRE_WRAP, PRE_LINE, NOWRAP, KHTML_NOWRAP | 320 NORMAL, PRE, PRE_WRAP, PRE_LINE, NOWRAP, KHTML_NOWRAP |
| 317 }; | 321 }; |
| 318 | 322 |
| 319 // The order of this enum must match the order of the text align values in CSSVa lueKeywords.in. | 323 // The order of this enum must match the order of the text align values in CSSVa lueKeywords.in. |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 607 | 611 |
| 608 enum AutoRepeatType { | 612 enum AutoRepeatType { |
| 609 NoAutoRepeat, | 613 NoAutoRepeat, |
| 610 AutoFill, | 614 AutoFill, |
| 611 AutoFit | 615 AutoFit |
| 612 }; | 616 }; |
| 613 | 617 |
| 614 } // namespace blink | 618 } // namespace blink |
| 615 | 619 |
| 616 #endif // ComputedStyleConstants_h | 620 #endif // ComputedStyleConstants_h |
| OLD | NEW |