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 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1235 switch (e) { | 1235 switch (e) { |
1236 case INLINE: | 1236 case INLINE: |
1237 m_value.valueID = CSSValueInline; | 1237 m_value.valueID = CSSValueInline; |
1238 break; | 1238 break; |
1239 case BLOCK: | 1239 case BLOCK: |
1240 m_value.valueID = CSSValueBlock; | 1240 m_value.valueID = CSSValueBlock; |
1241 break; | 1241 break; |
1242 case LIST_ITEM: | 1242 case LIST_ITEM: |
1243 m_value.valueID = CSSValueListItem; | 1243 m_value.valueID = CSSValueListItem; |
1244 break; | 1244 break; |
1245 case COMPACT: | |
1246 m_value.valueID = CSSValueCompact; | |
1247 break; | |
1248 case INLINE_BLOCK: | 1245 case INLINE_BLOCK: |
1249 m_value.valueID = CSSValueInlineBlock; | 1246 m_value.valueID = CSSValueInlineBlock; |
1250 break; | 1247 break; |
1251 case TABLE: | 1248 case TABLE: |
1252 m_value.valueID = CSSValueTable; | 1249 m_value.valueID = CSSValueTable; |
1253 break; | 1250 break; |
1254 case INLINE_TABLE: | 1251 case INLINE_TABLE: |
1255 m_value.valueID = CSSValueInlineTable; | 1252 m_value.valueID = CSSValueInlineTable; |
1256 break; | 1253 break; |
1257 case TABLE_ROW_GROUP: | 1254 case TABLE_ROW_GROUP: |
(...skipping 3705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4963 break; | 4960 break; |
4964 } | 4961 } |
4965 | 4962 |
4966 ASSERT_NOT_REACHED(); | 4963 ASSERT_NOT_REACHED(); |
4967 return TouchActionDelayNone; | 4964 return TouchActionDelayNone; |
4968 } | 4965 } |
4969 | 4966 |
4970 } | 4967 } |
4971 | 4968 |
4972 #endif | 4969 #endif |
OLD | NEW |