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

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

Issue 1210903004: Implement hanja counter styles (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix remaining tests 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 1561 matching lines...) Expand 10 before | Expand all | Expand 10 after
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: 1579 case KoreanHangulFormal:
1580 m_value.valueID = CSSValueKoreanHangulFormal; 1580 m_value.valueID = CSSValueKoreanHangulFormal;
1581 break; 1581 break;
1582 case KoreanHanjaFormal:
1583 m_value.valueID = CSSValueKoreanHanjaFormal;
1584 break;
1585 case KoreanHanjaInformal:
1586 m_value.valueID = CSSValueKoreanHanjaInformal;
1587 break;
1582 case Hebrew: 1588 case Hebrew:
1583 m_value.valueID = CSSValueHebrew; 1589 m_value.valueID = CSSValueHebrew;
1584 break; 1590 break;
1585 case Hiragana: 1591 case Hiragana:
1586 m_value.valueID = CSSValueHiragana; 1592 m_value.valueID = CSSValueHiragana;
1587 break; 1593 break;
1588 case HiraganaIroha: 1594 case HiraganaIroha:
1589 m_value.valueID = CSSValueHiraganaIroha; 1595 m_value.valueID = CSSValueHiraganaIroha;
1590 break; 1596 break;
1591 case Kannada: 1597 case Kannada:
(...skipping 3075 matching lines...) Expand 10 before | Expand all | Expand 10 after
4667 default: 4673 default:
4668 break; 4674 break;
4669 } 4675 }
4670 ASSERT_NOT_REACHED(); 4676 ASSERT_NOT_REACHED();
4671 return ScrollSnapTypeNone; 4677 return ScrollSnapTypeNone;
4672 } 4678 }
4673 4679
4674 } // namespace blink 4680 } // namespace blink
4675 4681
4676 #endif 4682 #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