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

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: Merge with trunk (no changes from previous patch) 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
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/layout/LayoutBox.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
1009 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) 1008 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents)
1010 { 1009 {
1011 // FIXME: We may want to handle stylesheets that have multiple owners 1010 // FIXME: We may want to handle stylesheets that have multiple owners
1012 // http://crbug.com/242125 1011 // http://crbug.com/242125
1013 if (sheetContents && sheetContents->hasSingleOwnerNode()) 1012 if (sheetContents && sheetContents->hasSingleOwnerNode())
1014 return getFrom(sheetContents->singleOwnerDocument()); 1013 return getFrom(sheetContents->singleOwnerDocument());
1015 return 0; 1014 return 0;
1016 } 1015 }
1017 1016
1018 } // namespace blink 1017 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/layout/LayoutBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698