OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google, Inc. All rights reserved. | 2 * Copyright (C) 2012 Google, Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 case CSSPropertyWebkitTransformOriginZ: return 330; | 384 case CSSPropertyWebkitTransformOriginZ: return 330; |
385 case CSSPropertyWebkitTransformStyle: return 331; | 385 case CSSPropertyWebkitTransformStyle: return 331; |
386 case CSSPropertyWebkitTransition: return 332; | 386 case CSSPropertyWebkitTransition: return 332; |
387 case CSSPropertyWebkitTransitionDelay: return 333; | 387 case CSSPropertyWebkitTransitionDelay: return 333; |
388 case CSSPropertyWebkitTransitionDuration: return 334; | 388 case CSSPropertyWebkitTransitionDuration: return 334; |
389 case CSSPropertyWebkitTransitionProperty: return 335; | 389 case CSSPropertyWebkitTransitionProperty: return 335; |
390 case CSSPropertyWebkitTransitionTimingFunction: return 336; | 390 case CSSPropertyWebkitTransitionTimingFunction: return 336; |
391 case CSSPropertyWebkitUserDrag: return 337; | 391 case CSSPropertyWebkitUserDrag: return 337; |
392 case CSSPropertyWebkitUserModify: return 338; | 392 case CSSPropertyWebkitUserModify: return 338; |
393 case CSSPropertyWebkitUserSelect: return 339; | 393 case CSSPropertyWebkitUserSelect: return 339; |
394 #if defined(ENABLE_CSS_REGIONS) && ENABLE_CSS_REGIONS | |
395 case CSSPropertyWebkitFlowInto: return 340; | 394 case CSSPropertyWebkitFlowInto: return 340; |
396 case CSSPropertyWebkitFlowFrom: return 341; | 395 case CSSPropertyWebkitFlowFrom: return 341; |
397 case CSSPropertyWebkitRegionOverflow: return 342; | 396 case CSSPropertyWebkitRegionOverflow: return 342; |
398 case CSSPropertyWebkitRegionBreakAfter: return 343; | 397 case CSSPropertyWebkitRegionBreakAfter: return 343; |
399 case CSSPropertyWebkitRegionBreakBefore: return 344; | 398 case CSSPropertyWebkitRegionBreakBefore: return 344; |
400 case CSSPropertyWebkitRegionBreakInside: return 345; | 399 case CSSPropertyWebkitRegionBreakInside: return 345; |
401 #endif | |
402 case CSSPropertyWebkitShapeInside: return 346; | 400 case CSSPropertyWebkitShapeInside: return 346; |
403 case CSSPropertyWebkitShapeOutside: return 347; | 401 case CSSPropertyWebkitShapeOutside: return 347; |
404 case CSSPropertyWebkitShapeMargin: return 348; | 402 case CSSPropertyWebkitShapeMargin: return 348; |
405 case CSSPropertyWebkitShapePadding: return 349; | 403 case CSSPropertyWebkitShapePadding: return 349; |
406 case CSSPropertyWebkitWrapFlow: return 350; | 404 case CSSPropertyWebkitWrapFlow: return 350; |
407 case CSSPropertyWebkitWrapThrough: return 351; | 405 case CSSPropertyWebkitWrapThrough: return 351; |
408 case CSSPropertyWebkitWrap: return 352; | 406 case CSSPropertyWebkitWrap: return 352; |
409 #if defined(ENABLE_TOUCH_EVENTS) && ENABLE_TOUCH_EVENTS | 407 #if defined(ENABLE_TOUCH_EVENTS) && ENABLE_TOUCH_EVENTS |
410 case CSSPropertyWebkitTapHighlightColor: return 353; | 408 case CSSPropertyWebkitTapHighlightColor: return 353; |
411 #endif | 409 #endif |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 return; | 644 return; |
647 | 645 |
648 Page* page = document->page(); | 646 Page* page = document->page(); |
649 if (!page) | 647 if (!page) |
650 return; | 648 return; |
651 | 649 |
652 page->useCounter()->didCount(feature); | 650 page->useCounter()->didCount(feature); |
653 } | 651 } |
654 | 652 |
655 } // namespace WebCore | 653 } // namespace WebCore |
OLD | NEW |