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

Side by Side Diff: Source/core/frame/UseCounter.cpp

Issue 647723002: Remove -webkit-aspect-ratio. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Forgot to remove webkitAspectRatio from virtual/stable. :( 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
OLDNEW
1 1
2 /* 2 /*
3 * Copyright (C) 2012 Google, Inc. All rights reserved. 3 * Copyright (C) 2012 Google, Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 case CSSPropertyWebkitAnimation: return 166; 211 case CSSPropertyWebkitAnimation: return 166;
212 case CSSPropertyWebkitAnimationDelay: return 167; 212 case CSSPropertyWebkitAnimationDelay: return 167;
213 case CSSPropertyWebkitAnimationDirection: return 168; 213 case CSSPropertyWebkitAnimationDirection: return 168;
214 case CSSPropertyWebkitAnimationDuration: return 169; 214 case CSSPropertyWebkitAnimationDuration: return 169;
215 case CSSPropertyWebkitAnimationFillMode: return 170; 215 case CSSPropertyWebkitAnimationFillMode: return 170;
216 case CSSPropertyWebkitAnimationIterationCount: return 171; 216 case CSSPropertyWebkitAnimationIterationCount: return 171;
217 case CSSPropertyWebkitAnimationName: return 172; 217 case CSSPropertyWebkitAnimationName: return 172;
218 case CSSPropertyWebkitAnimationPlayState: return 173; 218 case CSSPropertyWebkitAnimationPlayState: return 173;
219 case CSSPropertyWebkitAnimationTimingFunction: return 174; 219 case CSSPropertyWebkitAnimationTimingFunction: return 174;
220 case CSSPropertyWebkitAppearance: return 175; 220 case CSSPropertyWebkitAppearance: return 175;
221 case CSSPropertyWebkitAspectRatio: return 176; 221 // CSSPropertyWebkitAspectRatio was 176
222 case CSSPropertyWebkitBackfaceVisibility: return 177; 222 case CSSPropertyWebkitBackfaceVisibility: return 177;
223 case CSSPropertyWebkitBackgroundClip: return 178; 223 case CSSPropertyWebkitBackgroundClip: return 178;
224 case CSSPropertyWebkitBackgroundComposite: return 179; 224 case CSSPropertyWebkitBackgroundComposite: return 179;
225 case CSSPropertyWebkitBackgroundOrigin: return 180; 225 case CSSPropertyWebkitBackgroundOrigin: return 180;
226 case CSSPropertyWebkitBackgroundSize: return 181; 226 case CSSPropertyWebkitBackgroundSize: return 181;
227 case CSSPropertyWebkitBorderAfter: return 182; 227 case CSSPropertyWebkitBorderAfter: return 182;
228 case CSSPropertyWebkitBorderAfterColor: return 183; 228 case CSSPropertyWebkitBorderAfterColor: return 183;
229 case CSSPropertyWebkitBorderAfterStyle: return 184; 229 case CSSPropertyWebkitBorderAfterStyle: return 184;
230 case CSSPropertyWebkitBorderAfterWidth: return 185; 230 case CSSPropertyWebkitBorderAfterWidth: return 185;
231 case CSSPropertyWebkitBorderBefore: return 186; 231 case CSSPropertyWebkitBorderBefore: return 186;
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
833 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) 833 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents)
834 { 834 {
835 // FIXME: We may want to handle stylesheets that have multiple owners 835 // FIXME: We may want to handle stylesheets that have multiple owners
836 // http://crbug.com/242125 836 // http://crbug.com/242125
837 if (sheetContents && sheetContents->hasSingleOwnerNode()) 837 if (sheetContents && sheetContents->hasSingleOwnerNode())
838 return getFrom(sheetContents->singleOwnerDocument()); 838 return getFrom(sheetContents->singleOwnerDocument());
839 return 0; 839 return 0;
840 } 840 }
841 841
842 } // namespace blink 842 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleBuilderCustom.cpp ('k') | Source/core/rendering/RenderFlexibleBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698