| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 break; | 458 break; |
| 459 case MediaTrackSelectionCheckmarkPart: | 459 case MediaTrackSelectionCheckmarkPart: |
| 460 m_value.valueID = CSSValueInternalMediaTrackSelectionCheckmark; | 460 m_value.valueID = CSSValueInternalMediaTrackSelectionCheckmark; |
| 461 break; | 461 break; |
| 462 case MediaClosedCaptionsIconPart: | 462 case MediaClosedCaptionsIconPart: |
| 463 m_value.valueID = CSSValueInternalMediaClosedCaptionsIcon; | 463 m_value.valueID = CSSValueInternalMediaClosedCaptionsIcon; |
| 464 break; | 464 break; |
| 465 case MediaSubtitlesIconPart: | 465 case MediaSubtitlesIconPart: |
| 466 m_value.valueID = CSSValueInternalMediaSubtitlesIcon; | 466 m_value.valueID = CSSValueInternalMediaSubtitlesIcon; |
| 467 break; | 467 break; |
| 468 case MediaOverflowMenuButtonPart: |
| 469 m_value.valueID = CSSValueMediaOverflowMenuButton; |
| 470 break; |
| 468 case MenulistPart: | 471 case MenulistPart: |
| 469 m_value.valueID = CSSValueMenulist; | 472 m_value.valueID = CSSValueMenulist; |
| 470 break; | 473 break; |
| 471 case MenulistButtonPart: | 474 case MenulistButtonPart: |
| 472 m_value.valueID = CSSValueMenulistButton; | 475 m_value.valueID = CSSValueMenulistButton; |
| 473 break; | 476 break; |
| 474 case MenulistTextPart: | 477 case MenulistTextPart: |
| 475 m_value.valueID = CSSValueMenulistText; | 478 m_value.valueID = CSSValueMenulistText; |
| 476 break; | 479 break; |
| 477 case MenulistTextFieldPart: | 480 case MenulistTextFieldPart: |
| (...skipping 4226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4704 default: | 4707 default: |
| 4705 break; | 4708 break; |
| 4706 } | 4709 } |
| 4707 ASSERT_NOT_REACHED(); | 4710 ASSERT_NOT_REACHED(); |
| 4708 return ContainsNone; | 4711 return ContainsNone; |
| 4709 } | 4712 } |
| 4710 | 4713 |
| 4711 } // namespace blink | 4714 } // namespace blink |
| 4712 | 4715 |
| 4713 #endif | 4716 #endif |
| OLD | NEW |