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

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

Issue 1168643003: Add support for korean-hangul-formal list style type (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Actually add a 0 value for the neg fields Created 5 years, 6 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
« no previous file with comments | « LayoutTests/fast/lists/li-values-expected.txt ('k') | Source/core/css/CSSValueKeywords.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1558 matching lines...) Expand 10 before | Expand all | Expand 10 after
1569 break; 1569 break;
1570 case Gurmukhi: 1570 case Gurmukhi:
1571 m_value.valueID = CSSValueGurmukhi; 1571 m_value.valueID = CSSValueGurmukhi;
1572 break; 1572 break;
1573 case Hangul: 1573 case Hangul:
1574 m_value.valueID = CSSValueHangul; 1574 m_value.valueID = CSSValueHangul;
1575 break; 1575 break;
1576 case HangulConsonant: 1576 case HangulConsonant:
1577 m_value.valueID = CSSValueHangulConsonant; 1577 m_value.valueID = CSSValueHangulConsonant;
1578 break; 1578 break;
1579 case KoreanHangulFormal:
1580 m_value.valueID = CSSValueKoreanHangulFormal;
1581 break;
1579 case Hebrew: 1582 case Hebrew:
1580 m_value.valueID = CSSValueHebrew; 1583 m_value.valueID = CSSValueHebrew;
1581 break; 1584 break;
1582 case Hiragana: 1585 case Hiragana:
1583 m_value.valueID = CSSValueHiragana; 1586 m_value.valueID = CSSValueHiragana;
1584 break; 1587 break;
1585 case HiraganaIroha: 1588 case HiraganaIroha:
1586 m_value.valueID = CSSValueHiraganaIroha; 1589 m_value.valueID = CSSValueHiraganaIroha;
1587 break; 1590 break;
1588 case Kannada: 1591 case Kannada:
(...skipping 3063 matching lines...) Expand 10 before | Expand all | Expand 10 after
4652 default: 4655 default:
4653 break; 4656 break;
4654 } 4657 }
4655 ASSERT_NOT_REACHED(); 4658 ASSERT_NOT_REACHED();
4656 return ScrollSnapTypeNone; 4659 return ScrollSnapTypeNone;
4657 } 4660 }
4658 4661
4659 } // namespace blink 4662 } // namespace blink
4660 4663
4661 #endif 4664 #endif
OLDNEW
« no previous file with comments | « LayoutTests/fast/lists/li-values-expected.txt ('k') | Source/core/css/CSSValueKeywords.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698