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

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

Issue 16959008: [CSS Grid Layout] Rename grid-{rows|columns} to grid-definition-{rows|columns} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 7 years, 5 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
« no previous file with comments | « Source/core/page/RuntimeCSSEnabled.cpp ('k') | Source/core/rendering/RenderGrid.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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 case CSSPropertyAlignSelf: return 232; 287 case CSSPropertyAlignSelf: return 232;
288 case CSSPropertyFlex: return 233; 288 case CSSPropertyFlex: return 233;
289 case CSSPropertyFlexBasis: return 234; 289 case CSSPropertyFlexBasis: return 234;
290 case CSSPropertyFlexDirection: return 235; 290 case CSSPropertyFlexDirection: return 235;
291 case CSSPropertyFlexFlow: return 236; 291 case CSSPropertyFlexFlow: return 236;
292 case CSSPropertyFlexGrow: return 237; 292 case CSSPropertyFlexGrow: return 237;
293 case CSSPropertyFlexShrink: return 238; 293 case CSSPropertyFlexShrink: return 238;
294 case CSSPropertyFlexWrap: return 239; 294 case CSSPropertyFlexWrap: return 239;
295 case CSSPropertyJustifyContent: return 240; 295 case CSSPropertyJustifyContent: return 240;
296 case CSSPropertyWebkitFontSizeDelta: return 241; 296 case CSSPropertyWebkitFontSizeDelta: return 241;
297 case CSSPropertyGridColumns: return 242; 297 case CSSPropertyGridDefinitionColumns: return 242;
298 case CSSPropertyGridRows: return 243; 298 case CSSPropertyGridDefinitionRows: return 243;
299 case CSSPropertyGridStart: return 244; 299 case CSSPropertyGridStart: return 244;
300 case CSSPropertyGridEnd: return 245; 300 case CSSPropertyGridEnd: return 245;
301 case CSSPropertyGridBefore: return 246; 301 case CSSPropertyGridBefore: return 246;
302 case CSSPropertyGridAfter: return 247; 302 case CSSPropertyGridAfter: return 247;
303 case CSSPropertyGridColumn: return 248; 303 case CSSPropertyGridColumn: return 248;
304 case CSSPropertyGridRow: return 249; 304 case CSSPropertyGridRow: return 249;
305 case CSSPropertyGridAutoFlow: return 250; 305 case CSSPropertyGridAutoFlow: return 250;
306 case CSSPropertyWebkitHighlight: return 251; 306 case CSSPropertyWebkitHighlight: return 251;
307 case CSSPropertyWebkitHyphenateCharacter: return 252; 307 case CSSPropertyWebkitHyphenateCharacter: return 252;
308 case CSSPropertyWebkitHyphenateLimitAfter: return 253; 308 case CSSPropertyWebkitHyphenateLimitAfter: return 253;
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) 671 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents)
672 { 672 {
673 // FIXME: We may want to handle stylesheets that have multiple owners 673 // FIXME: We may want to handle stylesheets that have multiple owners
674 // http://crbug.com/242125 674 // http://crbug.com/242125
675 if (sheetContents && !sheetContents->isUserStyleSheet() && sheetContents->ha sSingleOwnerNode()) 675 if (sheetContents && !sheetContents->isUserStyleSheet() && sheetContents->ha sSingleOwnerNode())
676 return getFrom(sheetContents->singleOwnerDocument()); 676 return getFrom(sheetContents->singleOwnerDocument());
677 return 0; 677 return 0;
678 } 678 }
679 679
680 } // namespace WebCore 680 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/RuntimeCSSEnabled.cpp ('k') | Source/core/rendering/RenderGrid.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698