| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 EthiopicHalehameTiEt, | 248 EthiopicHalehameTiEt, |
| 249 Hangul, | 249 Hangul, |
| 250 HangulConsonant, | 250 HangulConsonant, |
| 251 KoreanHangulFormal, | 251 KoreanHangulFormal, |
| 252 Hebrew, | 252 Hebrew, |
| 253 Armenian, | 253 Armenian, |
| 254 LowerArmenian, | 254 LowerArmenian, |
| 255 UpperArmenian, | 255 UpperArmenian, |
| 256 Georgian, | 256 Georgian, |
| 257 CJKIdeographic, | 257 CJKIdeographic, |
| 258 SimpChineseFormal, |
| 259 SimpChineseInformal, |
| 260 TradChineseFormal, |
| 261 TradChineseInformal, |
| 258 Hiragana, | 262 Hiragana, |
| 259 Katakana, | 263 Katakana, |
| 260 HiraganaIroha, | 264 HiraganaIroha, |
| 261 KatakanaIroha, | 265 KatakanaIroha, |
| 262 NoneListStyle | 266 NoneListStyle |
| 263 }; | 267 }; |
| 264 | 268 |
| 265 enum QuoteType { | 269 enum QuoteType { |
| 266 OPEN_QUOTE, CLOSE_QUOTE, NO_OPEN_QUOTE, NO_CLOSE_QUOTE | 270 OPEN_QUOTE, CLOSE_QUOTE, NO_OPEN_QUOTE, NO_CLOSE_QUOTE |
| 267 }; | 271 }; |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 | 536 |
| 533 enum ScrollSnapType { | 537 enum ScrollSnapType { |
| 534 ScrollSnapTypeNone, | 538 ScrollSnapTypeNone, |
| 535 ScrollSnapTypeMandatory, | 539 ScrollSnapTypeMandatory, |
| 536 ScrollSnapTypeProximity | 540 ScrollSnapTypeProximity |
| 537 }; | 541 }; |
| 538 | 542 |
| 539 } // namespace blink | 543 } // namespace blink |
| 540 | 544 |
| 541 #endif // ComputedStyleConstants_h | 545 #endif // ComputedStyleConstants_h |
| OLD | NEW |