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

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

Issue 1287623002: Delete blink code for scroll-blocks-on (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 | Annotate | Revision Log
OLDNEW
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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 case CSSPropertyTransform: return 446; 482 case CSSPropertyTransform: return 446;
483 case CSSPropertyTransformOrigin: return 447; 483 case CSSPropertyTransformOrigin: return 447;
484 case CSSPropertyTransformStyle: return 448; 484 case CSSPropertyTransformStyle: return 448;
485 case CSSPropertyPerspective: return 449; 485 case CSSPropertyPerspective: return 449;
486 case CSSPropertyPerspectiveOrigin: return 450; 486 case CSSPropertyPerspectiveOrigin: return 450;
487 case CSSPropertyBackfaceVisibility: return 451; 487 case CSSPropertyBackfaceVisibility: return 451;
488 case CSSPropertyGridTemplate: return 452; 488 case CSSPropertyGridTemplate: return 452;
489 case CSSPropertyGrid: return 453; 489 case CSSPropertyGrid: return 453;
490 case CSSPropertyAll: return 454; 490 case CSSPropertyAll: return 454;
491 case CSSPropertyJustifyItems: return 455; 491 case CSSPropertyJustifyItems: return 455;
492 case CSSPropertyScrollBlocksOn: return 456;
493 case CSSPropertyMotionPath: return 457; 492 case CSSPropertyMotionPath: return 457;
494 case CSSPropertyMotionOffset: return 458; 493 case CSSPropertyMotionOffset: return 458;
495 case CSSPropertyMotionRotation: return 459; 494 case CSSPropertyMotionRotation: return 459;
496 case CSSPropertyMotion: return 460; 495 case CSSPropertyMotion: return 460;
497 case CSSPropertyX: return 461; 496 case CSSPropertyX: return 461;
498 case CSSPropertyY: return 462; 497 case CSSPropertyY: return 462;
499 case CSSPropertyRx: return 463; 498 case CSSPropertyRx: return 463;
500 case CSSPropertyRy: return 464; 499 case CSSPropertyRy: return 464;
501 case CSSPropertyFontSizeAdjust: return 465; 500 case CSSPropertyFontSizeAdjust: return 465;
502 case CSSPropertyCx: return 466; 501 case CSSPropertyCx: return 466;
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) 999 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents)
1001 { 1000 {
1002 // FIXME: We may want to handle stylesheets that have multiple owners 1001 // FIXME: We may want to handle stylesheets that have multiple owners
1003 // http://crbug.com/242125 1002 // http://crbug.com/242125
1004 if (sheetContents && sheetContents->hasSingleOwnerNode()) 1003 if (sheetContents && sheetContents->hasSingleOwnerNode())
1005 return getFrom(sheetContents->singleOwnerDocument()); 1004 return getFrom(sheetContents->singleOwnerDocument());
1006 return 0; 1005 return 0;
1007 } 1006 }
1008 1007
1009 } // namespace blink 1008 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698