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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 case CSSPropertyAnimationFillMode: return 428; | 476 case CSSPropertyAnimationFillMode: return 428; |
477 case CSSPropertyAnimationIterationCount: return 429; | 477 case CSSPropertyAnimationIterationCount: return 429; |
478 case CSSPropertyAnimationName: return 430; | 478 case CSSPropertyAnimationName: return 430; |
479 case CSSPropertyAnimationPlayState: return 431; | 479 case CSSPropertyAnimationPlayState: return 431; |
480 case CSSPropertyAnimationTimingFunction: return 432; | 480 case CSSPropertyAnimationTimingFunction: return 432; |
481 case CSSPropertyObjectFit: return 433; | 481 case CSSPropertyObjectFit: return 433; |
482 case CSSPropertyPaintOrder: return 434; | 482 case CSSPropertyPaintOrder: return 434; |
483 case CSSPropertyMaskSourceType: return 435; | 483 case CSSPropertyMaskSourceType: return 435; |
484 case CSSPropertyIsolation: return 436; | 484 case CSSPropertyIsolation: return 436; |
485 case CSSPropertyObjectPosition: return 437; | 485 case CSSPropertyObjectPosition: return 437; |
486 case CSSPropertyInternalCallback: return 438; | 486 // case CSSPropertyInternalCallback: return 438; |
487 case CSSPropertyShapeImageThreshold: return 439; | 487 case CSSPropertyShapeImageThreshold: return 439; |
488 case CSSPropertyColumnFill: return 440; | 488 case CSSPropertyColumnFill: return 440; |
489 case CSSPropertyTextJustify: return 441; | 489 case CSSPropertyTextJustify: return 441; |
490 case CSSPropertyTouchActionDelay: return 442; | 490 case CSSPropertyTouchActionDelay: return 442; |
491 case CSSPropertyJustifySelf: return 443; | 491 case CSSPropertyJustifySelf: return 443; |
492 case CSSPropertyScrollBehavior: return 444; | 492 case CSSPropertyScrollBehavior: return 444; |
493 case CSSPropertyWillChange: return 445; | 493 case CSSPropertyWillChange: return 445; |
494 case CSSPropertyTransform: return 446; | 494 case CSSPropertyTransform: return 446; |
495 case CSSPropertyTransformOrigin: return 447; | 495 case CSSPropertyTransformOrigin: return 447; |
496 case CSSPropertyTransformStyle: return 448; | 496 case CSSPropertyTransformStyle: return 448; |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) | 829 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) |
830 { | 830 { |
831 // FIXME: We may want to handle stylesheets that have multiple owners | 831 // FIXME: We may want to handle stylesheets that have multiple owners |
832 // http://crbug.com/242125 | 832 // http://crbug.com/242125 |
833 if (sheetContents && sheetContents->hasSingleOwnerNode()) | 833 if (sheetContents && sheetContents->hasSingleOwnerNode()) |
834 return getFrom(sheetContents->singleOwnerDocument()); | 834 return getFrom(sheetContents->singleOwnerDocument()); |
835 return 0; | 835 return 0; |
836 } | 836 } |
837 | 837 |
838 } // namespace blink | 838 } // namespace blink |
OLD | NEW |