| 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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 break; | 394 break; |
| 395 case SquareButtonPart: | 395 case SquareButtonPart: |
| 396 m_value.ident = CSSValueSquareButton; | 396 m_value.ident = CSSValueSquareButton; |
| 397 break; | 397 break; |
| 398 case ButtonPart: | 398 case ButtonPart: |
| 399 m_value.ident = CSSValueButton; | 399 m_value.ident = CSSValueButton; |
| 400 break; | 400 break; |
| 401 case ButtonBevelPart: | 401 case ButtonBevelPart: |
| 402 m_value.ident = CSSValueButtonBevel; | 402 m_value.ident = CSSValueButtonBevel; |
| 403 break; | 403 break; |
| 404 case DefaultButtonPart: | |
| 405 m_value.ident = CSSValueDefaultButton; | |
| 406 break; | |
| 407 case InnerSpinButtonPart: | 404 case InnerSpinButtonPart: |
| 408 m_value.ident = CSSValueInnerSpinButton; | 405 m_value.ident = CSSValueInnerSpinButton; |
| 409 break; | 406 break; |
| 410 case ListboxPart: | 407 case ListboxPart: |
| 411 m_value.ident = CSSValueListbox; | 408 m_value.ident = CSSValueListbox; |
| 412 break; | 409 break; |
| 413 case ListItemPart: | 410 case ListItemPart: |
| 414 m_value.ident = CSSValueListitem; | 411 m_value.ident = CSSValueListitem; |
| 415 break; | 412 break; |
| 416 case MediaEnterFullscreenButtonPart: | 413 case MediaEnterFullscreenButtonPart: |
| (...skipping 4169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4586 | 4583 |
| 4587 ASSERT_NOT_REACHED(); | 4584 ASSERT_NOT_REACHED(); |
| 4588 return OriginTopLeft; | 4585 return OriginTopLeft; |
| 4589 } | 4586 } |
| 4590 | 4587 |
| 4591 #endif // ENABLE(CSS_IMAGE_ORIENTATION) | 4588 #endif // ENABLE(CSS_IMAGE_ORIENTATION) |
| 4592 | 4589 |
| 4593 } | 4590 } |
| 4594 | 4591 |
| 4595 #endif | 4592 #endif |
| OLD | NEW |