| 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 1618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1629 break; | 1629 break; |
| 1630 case NoneListStyle: | 1630 case NoneListStyle: |
| 1631 m_value.valueID = CSSValueNone; | 1631 m_value.valueID = CSSValueNone; |
| 1632 break; | 1632 break; |
| 1633 case Oriya: | 1633 case Oriya: |
| 1634 m_value.valueID = CSSValueOriya; | 1634 m_value.valueID = CSSValueOriya; |
| 1635 break; | 1635 break; |
| 1636 case Persian: | 1636 case Persian: |
| 1637 m_value.valueID = CSSValuePersian; | 1637 m_value.valueID = CSSValuePersian; |
| 1638 break; | 1638 break; |
| 1639 case SimpChineseFormal: |
| 1640 m_value.valueID = CSSValueSimpChineseFormal; |
| 1641 break; |
| 1642 case SimpChineseInformal: |
| 1643 m_value.valueID = CSSValueSimpChineseInformal; |
| 1644 break; |
| 1639 case Square: | 1645 case Square: |
| 1640 m_value.valueID = CSSValueSquare; | 1646 m_value.valueID = CSSValueSquare; |
| 1641 break; | 1647 break; |
| 1642 case Telugu: | 1648 case Telugu: |
| 1643 m_value.valueID = CSSValueTelugu; | 1649 m_value.valueID = CSSValueTelugu; |
| 1644 break; | 1650 break; |
| 1645 case Thai: | 1651 case Thai: |
| 1646 m_value.valueID = CSSValueThai; | 1652 m_value.valueID = CSSValueThai; |
| 1647 break; | 1653 break; |
| 1648 case Tibetan: | 1654 case Tibetan: |
| 1649 m_value.valueID = CSSValueTibetan; | 1655 m_value.valueID = CSSValueTibetan; |
| 1650 break; | 1656 break; |
| 1657 case TradChineseFormal: |
| 1658 m_value.valueID = CSSValueTradChineseFormal; |
| 1659 break; |
| 1660 case TradChineseInformal: |
| 1661 m_value.valueID = CSSValueTradChineseInformal; |
| 1662 break; |
| 1651 case UpperAlpha: | 1663 case UpperAlpha: |
| 1652 m_value.valueID = CSSValueUpperAlpha; | 1664 m_value.valueID = CSSValueUpperAlpha; |
| 1653 break; | 1665 break; |
| 1654 case UpperArmenian: | 1666 case UpperArmenian: |
| 1655 m_value.valueID = CSSValueUpperArmenian; | 1667 m_value.valueID = CSSValueUpperArmenian; |
| 1656 break; | 1668 break; |
| 1657 case UpperLatin: | 1669 case UpperLatin: |
| 1658 m_value.valueID = CSSValueUpperLatin; | 1670 m_value.valueID = CSSValueUpperLatin; |
| 1659 break; | 1671 break; |
| 1660 case UpperRoman: | 1672 case UpperRoman: |
| (...skipping 2994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4655 default: | 4667 default: |
| 4656 break; | 4668 break; |
| 4657 } | 4669 } |
| 4658 ASSERT_NOT_REACHED(); | 4670 ASSERT_NOT_REACHED(); |
| 4659 return ScrollSnapTypeNone; | 4671 return ScrollSnapTypeNone; |
| 4660 } | 4672 } |
| 4661 | 4673 |
| 4662 } // namespace blink | 4674 } // namespace blink |
| 4663 | 4675 |
| 4664 #endif | 4676 #endif |
| OLD | NEW |