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

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

Issue 201573009: Remove -webkit-column-progression and -webkit-column-axis properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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
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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 case CSSPropertyWebkitBoxAlign: return 203; 257 case CSSPropertyWebkitBoxAlign: return 203;
258 case CSSPropertyWebkitBoxDirection: return 204; 258 case CSSPropertyWebkitBoxDirection: return 204;
259 case CSSPropertyWebkitBoxFlex: return 205; 259 case CSSPropertyWebkitBoxFlex: return 205;
260 case CSSPropertyWebkitBoxFlexGroup: return 206; 260 case CSSPropertyWebkitBoxFlexGroup: return 206;
261 case CSSPropertyWebkitBoxLines: return 207; 261 case CSSPropertyWebkitBoxLines: return 207;
262 case CSSPropertyWebkitBoxOrdinalGroup: return 208; 262 case CSSPropertyWebkitBoxOrdinalGroup: return 208;
263 case CSSPropertyWebkitBoxOrient: return 209; 263 case CSSPropertyWebkitBoxOrient: return 209;
264 case CSSPropertyWebkitBoxPack: return 210; 264 case CSSPropertyWebkitBoxPack: return 210;
265 case CSSPropertyWebkitBoxReflect: return 211; 265 case CSSPropertyWebkitBoxReflect: return 211;
266 case CSSPropertyWebkitBoxShadow: return 212; 266 case CSSPropertyWebkitBoxShadow: return 212;
267 case CSSPropertyWebkitColumnAxis: return 214; 267 // case CSSPropertyWebkitColumnAxis: return 214;
Julien - ping for review 2014/03/25 18:52:53 A) We should align the comment with the case state
mstensho (USE GERRIT) 2014/03/26 09:03:23 A&B: Disagrees with how emacs indents by default,
268 case CSSPropertyWebkitColumnBreakAfter: return 215; 268 case CSSPropertyWebkitColumnBreakAfter: return 215;
269 case CSSPropertyWebkitColumnBreakBefore: return 216; 269 case CSSPropertyWebkitColumnBreakBefore: return 216;
270 case CSSPropertyWebkitColumnBreakInside: return 217; 270 case CSSPropertyWebkitColumnBreakInside: return 217;
271 case CSSPropertyWebkitColumnCount: return 218; 271 case CSSPropertyWebkitColumnCount: return 218;
272 case CSSPropertyWebkitColumnGap: return 219; 272 case CSSPropertyWebkitColumnGap: return 219;
273 case CSSPropertyWebkitColumnProgression: return 220; 273 // case CSSPropertyWebkitColumnProgression: return 220;
Julien - ping for review 2014/03/25 18:52:53 Ditto.
mstensho (USE GERRIT) 2014/03/26 09:03:23 Done.
274 case CSSPropertyWebkitColumnRule: return 221; 274 case CSSPropertyWebkitColumnRule: return 221;
275 case CSSPropertyWebkitColumnRuleColor: return 222; 275 case CSSPropertyWebkitColumnRuleColor: return 222;
276 case CSSPropertyWebkitColumnRuleStyle: return 223; 276 case CSSPropertyWebkitColumnRuleStyle: return 223;
277 case CSSPropertyWebkitColumnRuleWidth: return 224; 277 case CSSPropertyWebkitColumnRuleWidth: return 224;
278 case CSSPropertyWebkitColumnSpan: return 225; 278 case CSSPropertyWebkitColumnSpan: return 225;
279 case CSSPropertyWebkitColumnWidth: return 226; 279 case CSSPropertyWebkitColumnWidth: return 226;
280 case CSSPropertyWebkitColumns: return 227; 280 case CSSPropertyWebkitColumns: return 227;
281 #if defined(ENABLE_CSS_BOX_DECORATION_BREAK) && ENABLE_CSS_BOX_DECORATION_BREAK 281 #if defined(ENABLE_CSS_BOX_DECORATION_BREAK) && ENABLE_CSS_BOX_DECORATION_BREAK
282 case CSSPropertyWebkitBoxDecorationBreak: return 228; 282 case CSSPropertyWebkitBoxDecorationBreak: return 228;
283 #endif 283 #endif
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) 726 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents)
727 { 727 {
728 // FIXME: We may want to handle stylesheets that have multiple owners 728 // FIXME: We may want to handle stylesheets that have multiple owners
729 // http://crbug.com/242125 729 // http://crbug.com/242125
730 if (sheetContents && sheetContents->hasSingleOwnerNode()) 730 if (sheetContents && sheetContents->hasSingleOwnerNode())
731 return getFrom(sheetContents->singleOwnerDocument()); 731 return getFrom(sheetContents->singleOwnerDocument());
732 return 0; 732 return 0;
733 } 733 }
734 734
735 } // namespace WebCore 735 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698