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

Side by Side Diff: Source/core/css/parser/BisonCSSParser-in.cpp

Issue 211123002: CSS Transforms: Implement transform-style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSProperties.in ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('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) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
9 * Copyright (C) 2012 Intel Corporation. All rights reserved. 9 * Copyright (C) 2012 Intel Corporation. All rights reserved.
10 * 10 *
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 break; 680 break;
681 case CSSPropertyWebkitTextEmphasisPosition: 681 case CSSPropertyWebkitTextEmphasisPosition:
682 if (valueID == CSSValueOver || valueID == CSSValueUnder) 682 if (valueID == CSSValueOver || valueID == CSSValueUnder)
683 return true; 683 return true;
684 break; 684 break;
685 case CSSPropertyWebkitTextSecurity: 685 case CSSPropertyWebkitTextSecurity:
686 // disc | circle | square | none | inherit 686 // disc | circle | square | none | inherit
687 if (valueID == CSSValueDisc || valueID == CSSValueCircle || valueID == C SSValueSquare || valueID == CSSValueNone) 687 if (valueID == CSSValueDisc || valueID == CSSValueCircle || valueID == C SSValueSquare || valueID == CSSValueNone)
688 return true; 688 return true;
689 break; 689 break;
690 case CSSPropertyTransformStyle:
690 case CSSPropertyWebkitTransformStyle: 691 case CSSPropertyWebkitTransformStyle:
691 if (valueID == CSSValueFlat || valueID == CSSValuePreserve3d) 692 if (valueID == CSSValueFlat || valueID == CSSValuePreserve3d)
692 return true; 693 return true;
693 break; 694 break;
694 case CSSPropertyWebkitUserDrag: // auto | none | element 695 case CSSPropertyWebkitUserDrag: // auto | none | element
695 if (valueID == CSSValueAuto || valueID == CSSValueNone || valueID == CSS ValueElement) 696 if (valueID == CSSValueAuto || valueID == CSSValueNone || valueID == CSS ValueElement)
696 return true; 697 return true;
697 break; 698 break;
698 case CSSPropertyWebkitUserModify: // read-only | read-write 699 case CSSPropertyWebkitUserModify: // read-only | read-write
699 if (valueID == CSSValueReadOnly || valueID == CSSValueReadWrite || value ID == CSSValueReadWritePlaintextOnly) 700 if (valueID == CSSValueReadOnly || valueID == CSSValueReadWrite || value ID == CSSValueReadWritePlaintextOnly)
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 case CSSPropertyWebkitMarginBottomCollapse: 815 case CSSPropertyWebkitMarginBottomCollapse:
815 case CSSPropertyWebkitMarginTopCollapse: 816 case CSSPropertyWebkitMarginTopCollapse:
816 case CSSPropertyInternalMarqueeDirection: 817 case CSSPropertyInternalMarqueeDirection:
817 case CSSPropertyInternalMarqueeStyle: 818 case CSSPropertyInternalMarqueeStyle:
818 case CSSPropertyWebkitPrintColorAdjust: 819 case CSSPropertyWebkitPrintColorAdjust:
819 case CSSPropertyWebkitRtlOrdering: 820 case CSSPropertyWebkitRtlOrdering:
820 case CSSPropertyWebkitRubyPosition: 821 case CSSPropertyWebkitRubyPosition:
821 case CSSPropertyWebkitTextCombine: 822 case CSSPropertyWebkitTextCombine:
822 case CSSPropertyWebkitTextEmphasisPosition: 823 case CSSPropertyWebkitTextEmphasisPosition:
823 case CSSPropertyWebkitTextSecurity: 824 case CSSPropertyWebkitTextSecurity:
825 case CSSPropertyTransformStyle:
824 case CSSPropertyWebkitTransformStyle: 826 case CSSPropertyWebkitTransformStyle:
825 case CSSPropertyWebkitUserDrag: 827 case CSSPropertyWebkitUserDrag:
826 case CSSPropertyWebkitUserModify: 828 case CSSPropertyWebkitUserModify:
827 case CSSPropertyWebkitUserSelect: 829 case CSSPropertyWebkitUserSelect:
828 case CSSPropertyWebkitWrapFlow: 830 case CSSPropertyWebkitWrapFlow:
829 case CSSPropertyWebkitWrapThrough: 831 case CSSPropertyWebkitWrapThrough:
830 case CSSPropertyWebkitWritingMode: 832 case CSSPropertyWebkitWritingMode:
831 case CSSPropertyWhiteSpace: 833 case CSSPropertyWhiteSpace:
832 case CSSPropertyWordBreak: 834 case CSSPropertyWordBreak:
833 case CSSPropertyWordWrap: 835 case CSSPropertyWordWrap:
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after
2168 rule->setProperties(createStylePropertySet()); 2170 rule->setProperties(createStylePropertySet());
2169 clearProperties(); 2171 clearProperties();
2170 2172
2171 StyleRuleViewport* result = rule.get(); 2173 StyleRuleViewport* result = rule.get();
2172 m_parsedRules.append(rule.release()); 2174 m_parsedRules.append(rule.release());
2173 2175
2174 return result; 2176 return result;
2175 } 2177 }
2176 2178
2177 } 2179 }
OLDNEW
« no previous file with comments | « Source/core/css/CSSProperties.in ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698