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

Side by Side Diff: Source/core/css/CSSComputedStyleDeclaration.cpp

Issue 669553002: Remove <marquee> leftovers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 2 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 | « Source/core/core.gypi ('k') | Source/core/css/CSSPrimitiveValueMappings.h » ('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) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 2731 matching lines...) Expand 10 before | Expand all | Expand 10 after
2742 case CSSPropertyWebkitTransformOriginZ: 2742 case CSSPropertyWebkitTransformOriginZ:
2743 break; 2743 break;
2744 2744
2745 /* @viewport rule properties */ 2745 /* @viewport rule properties */
2746 case CSSPropertyMaxZoom: 2746 case CSSPropertyMaxZoom:
2747 case CSSPropertyMinZoom: 2747 case CSSPropertyMinZoom:
2748 case CSSPropertyOrientation: 2748 case CSSPropertyOrientation:
2749 case CSSPropertyUserZoom: 2749 case CSSPropertyUserZoom:
2750 break; 2750 break;
2751 2751
2752 // Internal properties that shouldn't be exposed throught getComputedSty le.
2753 case CSSPropertyInternalMarqueeDirection:
2754 case CSSPropertyInternalMarqueeIncrement:
2755 case CSSPropertyInternalMarqueeRepetition:
2756 case CSSPropertyInternalMarqueeSpeed:
2757 case CSSPropertyInternalMarqueeStyle:
2758 ASSERT_NOT_REACHED();
2759 return nullptr;
2760
2761 case CSSPropertyBufferedRendering: 2752 case CSSPropertyBufferedRendering:
2762 case CSSPropertyClipPath: 2753 case CSSPropertyClipPath:
2763 case CSSPropertyClipRule: 2754 case CSSPropertyClipRule:
2764 case CSSPropertyMask: 2755 case CSSPropertyMask:
2765 case CSSPropertyEnableBackground: 2756 case CSSPropertyEnableBackground:
2766 case CSSPropertyFilter: 2757 case CSSPropertyFilter:
2767 case CSSPropertyFloodColor: 2758 case CSSPropertyFloodColor:
2768 case CSSPropertyFloodOpacity: 2759 case CSSPropertyFloodOpacity:
2769 case CSSPropertyLightingColor: 2760 case CSSPropertyLightingColor:
2770 case CSSPropertyStopColor: 2761 case CSSPropertyStopColor:
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
2992 return list.release(); 2983 return list.release();
2993 } 2984 }
2994 2985
2995 void CSSComputedStyleDeclaration::trace(Visitor* visitor) 2986 void CSSComputedStyleDeclaration::trace(Visitor* visitor)
2996 { 2987 {
2997 visitor->trace(m_node); 2988 visitor->trace(m_node);
2998 CSSStyleDeclaration::trace(visitor); 2989 CSSStyleDeclaration::trace(visitor);
2999 } 2990 }
3000 2991
3001 } // namespace blink 2992 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/CSSPrimitiveValueMappings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698