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

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

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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/css/resolver/StyleBuilderCustom.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 /* 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 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 CSSPropertyGridDefinitionColumns: return 242; 297 case CSSPropertyGridTemplateColumns: return 242;
298 case CSSPropertyGridDefinitionRows: return 243; 298 case CSSPropertyGridTemplateRows: return 243;
299 case CSSPropertyGridColumnStart: return 244; 299 case CSSPropertyGridColumnStart: return 244;
300 case CSSPropertyGridColumnEnd: return 245; 300 case CSSPropertyGridColumnEnd: return 245;
301 case CSSPropertyGridRowStart: return 246; 301 case CSSPropertyGridRowStart: return 246;
302 case CSSPropertyGridRowEnd: return 247; 302 case CSSPropertyGridRowEnd: 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 CSSPropertyWebkitLineBoxContain: return 257; 308 case CSSPropertyWebkitLineBoxContain: return 257;
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) 741 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents)
742 { 742 {
743 // FIXME: We may want to handle stylesheets that have multiple owners 743 // FIXME: We may want to handle stylesheets that have multiple owners
744 // http://crbug.com/242125 744 // http://crbug.com/242125
745 if (sheetContents && sheetContents->hasSingleOwnerNode()) 745 if (sheetContents && sheetContents->hasSingleOwnerNode())
746 return getFrom(sheetContents->singleOwnerDocument()); 746 return getFrom(sheetContents->singleOwnerDocument());
747 return 0; 747 return 0;
748 } 748 }
749 749
750 } // namespace WebCore 750 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleBuilderCustom.cpp ('k') | Source/core/rendering/RenderGrid.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698