| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>. | 2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>. |
| 3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> | 5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> |
| 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 1561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1572 break; | 1572 break; |
| 1573 case Hangul: | 1573 case Hangul: |
| 1574 m_value.valueID = CSSValueHangul; | 1574 m_value.valueID = CSSValueHangul; |
| 1575 break; | 1575 break; |
| 1576 case HangulConsonant: | 1576 case HangulConsonant: |
| 1577 m_value.valueID = CSSValueHangulConsonant; | 1577 m_value.valueID = CSSValueHangulConsonant; |
| 1578 break; | 1578 break; |
| 1579 case KoreanHangulFormal: | 1579 case KoreanHangulFormal: |
| 1580 m_value.valueID = CSSValueKoreanHangulFormal; | 1580 m_value.valueID = CSSValueKoreanHangulFormal; |
| 1581 break; | 1581 break; |
| 1582 case KoreanHanjaFormal: |
| 1583 m_value.valueID = CSSValueKoreanHanjaFormal; |
| 1584 break; |
| 1585 case KoreanHanjaInformal: |
| 1586 m_value.valueID = CSSValueKoreanHanjaInformal; |
| 1587 break; |
| 1582 case Hebrew: | 1588 case Hebrew: |
| 1583 m_value.valueID = CSSValueHebrew; | 1589 m_value.valueID = CSSValueHebrew; |
| 1584 break; | 1590 break; |
| 1585 case Hiragana: | 1591 case Hiragana: |
| 1586 m_value.valueID = CSSValueHiragana; | 1592 m_value.valueID = CSSValueHiragana; |
| 1587 break; | 1593 break; |
| 1588 case HiraganaIroha: | 1594 case HiraganaIroha: |
| 1589 m_value.valueID = CSSValueHiraganaIroha; | 1595 m_value.valueID = CSSValueHiraganaIroha; |
| 1590 break; | 1596 break; |
| 1591 case Kannada: | 1597 case Kannada: |
| (...skipping 3075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4667 default: | 4673 default: |
| 4668 break; | 4674 break; |
| 4669 } | 4675 } |
| 4670 ASSERT_NOT_REACHED(); | 4676 ASSERT_NOT_REACHED(); |
| 4671 return ScrollSnapTypeNone; | 4677 return ScrollSnapTypeNone; |
| 4672 } | 4678 } |
| 4673 | 4679 |
| 4674 } // namespace blink | 4680 } // namespace blink |
| 4675 | 4681 |
| 4676 #endif | 4682 #endif |
| OLD | NEW |