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

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

Issue 215843003: Revert of CSS Transforms: Implement transform-style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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:
691 case CSSPropertyWebkitTransformStyle: 690 case CSSPropertyWebkitTransformStyle:
692 if (valueID == CSSValueFlat || valueID == CSSValuePreserve3d) 691 if (valueID == CSSValueFlat || valueID == CSSValuePreserve3d)
693 return true; 692 return true;
694 break; 693 break;
695 case CSSPropertyWebkitUserDrag: // auto | none | element 694 case CSSPropertyWebkitUserDrag: // auto | none | element
696 if (valueID == CSSValueAuto || valueID == CSSValueNone || valueID == CSS ValueElement) 695 if (valueID == CSSValueAuto || valueID == CSSValueNone || valueID == CSS ValueElement)
697 return true; 696 return true;
698 break; 697 break;
699 case CSSPropertyWebkitUserModify: // read-only | read-write 698 case CSSPropertyWebkitUserModify: // read-only | read-write
700 if (valueID == CSSValueReadOnly || valueID == CSSValueReadWrite || value ID == CSSValueReadWritePlaintextOnly) 699 if (valueID == CSSValueReadOnly || valueID == CSSValueReadWrite || value ID == CSSValueReadWritePlaintextOnly)
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 case CSSPropertyWebkitMarginBottomCollapse: 814 case CSSPropertyWebkitMarginBottomCollapse:
816 case CSSPropertyWebkitMarginTopCollapse: 815 case CSSPropertyWebkitMarginTopCollapse:
817 case CSSPropertyInternalMarqueeDirection: 816 case CSSPropertyInternalMarqueeDirection:
818 case CSSPropertyInternalMarqueeStyle: 817 case CSSPropertyInternalMarqueeStyle:
819 case CSSPropertyWebkitPrintColorAdjust: 818 case CSSPropertyWebkitPrintColorAdjust:
820 case CSSPropertyWebkitRtlOrdering: 819 case CSSPropertyWebkitRtlOrdering:
821 case CSSPropertyWebkitRubyPosition: 820 case CSSPropertyWebkitRubyPosition:
822 case CSSPropertyWebkitTextCombine: 821 case CSSPropertyWebkitTextCombine:
823 case CSSPropertyWebkitTextEmphasisPosition: 822 case CSSPropertyWebkitTextEmphasisPosition:
824 case CSSPropertyWebkitTextSecurity: 823 case CSSPropertyWebkitTextSecurity:
825 case CSSPropertyTransformStyle:
826 case CSSPropertyWebkitTransformStyle: 824 case CSSPropertyWebkitTransformStyle:
827 case CSSPropertyWebkitUserDrag: 825 case CSSPropertyWebkitUserDrag:
828 case CSSPropertyWebkitUserModify: 826 case CSSPropertyWebkitUserModify:
829 case CSSPropertyWebkitUserSelect: 827 case CSSPropertyWebkitUserSelect:
830 case CSSPropertyWebkitWrapFlow: 828 case CSSPropertyWebkitWrapFlow:
831 case CSSPropertyWebkitWrapThrough: 829 case CSSPropertyWebkitWrapThrough:
832 case CSSPropertyWebkitWritingMode: 830 case CSSPropertyWebkitWritingMode:
833 case CSSPropertyWhiteSpace: 831 case CSSPropertyWhiteSpace:
834 case CSSPropertyWordBreak: 832 case CSSPropertyWordBreak:
835 case CSSPropertyWordWrap: 833 case CSSPropertyWordWrap:
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after
2170 rule->setProperties(createStylePropertySet()); 2168 rule->setProperties(createStylePropertySet());
2171 clearProperties(); 2169 clearProperties();
2172 2170
2173 StyleRuleViewport* result = rule.get(); 2171 StyleRuleViewport* result = rule.get();
2174 m_parsedRules.append(rule.release()); 2172 m_parsedRules.append(rule.release());
2175 2173
2176 return result; 2174 return result;
2177 } 2175 }
2178 2176
2179 } 2177 }
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