Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h

Issue 2005093002: Remove non-standard 'results' attribute of INPUT element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 break; 497 break;
498 case SliderThumbVerticalPart: 498 case SliderThumbVerticalPart:
499 m_value.valueID = CSSValueSliderthumbVertical; 499 m_value.valueID = CSSValueSliderthumbVertical;
500 break; 500 break;
501 case CaretPart: 501 case CaretPart:
502 m_value.valueID = CSSValueCaret; 502 m_value.valueID = CSSValueCaret;
503 break; 503 break;
504 case SearchFieldPart: 504 case SearchFieldPart:
505 m_value.valueID = CSSValueSearchfield; 505 m_value.valueID = CSSValueSearchfield;
506 break; 506 break;
507 case SearchFieldDecorationPart:
508 m_value.valueID = CSSValueSearchfieldDecoration;
509 break;
510 case SearchFieldResultsDecorationPart:
511 m_value.valueID = CSSValueSearchfieldResultsDecoration;
512 break;
513 case SearchFieldCancelButtonPart: 507 case SearchFieldCancelButtonPart:
514 m_value.valueID = CSSValueSearchfieldCancelButton; 508 m_value.valueID = CSSValueSearchfieldCancelButton;
515 break; 509 break;
516 case TextFieldPart: 510 case TextFieldPart:
517 m_value.valueID = CSSValueTextfield; 511 m_value.valueID = CSSValueTextfield;
518 break; 512 break;
519 case TextAreaPart: 513 case TextAreaPart:
520 m_value.valueID = CSSValueTextarea; 514 m_value.valueID = CSSValueTextarea;
521 break; 515 break;
522 case CapsLockIndicatorPart: 516 case CapsLockIndicatorPart:
(...skipping 4152 matching lines...) Expand 10 before | Expand all | Expand 10 after
4675 default: 4669 default:
4676 break; 4670 break;
4677 } 4671 }
4678 ASSERT_NOT_REACHED(); 4672 ASSERT_NOT_REACHED();
4679 return ContainsNone; 4673 return ContainsNone;
4680 } 4674 }
4681 4675
4682 } // namespace blink 4676 } // namespace blink
4683 4677
4684 #endif 4678 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698