| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) | 826 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) |
| 827 { | 827 { |
| 828 // FIXME: We may want to handle stylesheets that have multiple owners | 828 // FIXME: We may want to handle stylesheets that have multiple owners |
| 829 // http://crbug.com/242125 | 829 // http://crbug.com/242125 |
| 830 if (sheetContents && sheetContents->hasSingleOwnerNode()) | 830 if (sheetContents && sheetContents->hasSingleOwnerNode()) |
| 831 return getFrom(sheetContents->singleOwnerDocument()); | 831 return getFrom(sheetContents->singleOwnerDocument()); |
| 832 return 0; | 832 return 0; |
| 833 } | 833 } |
| 834 | 834 |
| 835 } // namespace blink | 835 } // namespace blink |
| OLD | NEW |