OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |