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

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

Issue 16357011: Remove support for -webkit-color-correction (which we've never supported on (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: resolve merge conflicts, obey brace style changes Created 7 years, 6 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/PrintContext.cpp ('k') | Source/core/platform/DragImage.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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 case CSSPropertyWebkitBoxAlign: return 203; 255 case CSSPropertyWebkitBoxAlign: return 203;
256 case CSSPropertyWebkitBoxDirection: return 204; 256 case CSSPropertyWebkitBoxDirection: return 204;
257 case CSSPropertyWebkitBoxFlex: return 205; 257 case CSSPropertyWebkitBoxFlex: return 205;
258 case CSSPropertyWebkitBoxFlexGroup: return 206; 258 case CSSPropertyWebkitBoxFlexGroup: return 206;
259 case CSSPropertyWebkitBoxLines: return 207; 259 case CSSPropertyWebkitBoxLines: return 207;
260 case CSSPropertyWebkitBoxOrdinalGroup: return 208; 260 case CSSPropertyWebkitBoxOrdinalGroup: return 208;
261 case CSSPropertyWebkitBoxOrient: return 209; 261 case CSSPropertyWebkitBoxOrient: return 209;
262 case CSSPropertyWebkitBoxPack: return 210; 262 case CSSPropertyWebkitBoxPack: return 210;
263 case CSSPropertyWebkitBoxReflect: return 211; 263 case CSSPropertyWebkitBoxReflect: return 211;
264 case CSSPropertyWebkitBoxShadow: return 212; 264 case CSSPropertyWebkitBoxShadow: return 212;
265 case CSSPropertyWebkitColorCorrection: return 213;
266 case CSSPropertyWebkitColumnAxis: return 214; 265 case CSSPropertyWebkitColumnAxis: return 214;
267 case CSSPropertyWebkitColumnBreakAfter: return 215; 266 case CSSPropertyWebkitColumnBreakAfter: return 215;
268 case CSSPropertyWebkitColumnBreakBefore: return 216; 267 case CSSPropertyWebkitColumnBreakBefore: return 216;
269 case CSSPropertyWebkitColumnBreakInside: return 217; 268 case CSSPropertyWebkitColumnBreakInside: return 217;
270 case CSSPropertyWebkitColumnCount: return 218; 269 case CSSPropertyWebkitColumnCount: return 218;
271 case CSSPropertyWebkitColumnGap: return 219; 270 case CSSPropertyWebkitColumnGap: return 219;
272 case CSSPropertyWebkitColumnProgression: return 220; 271 case CSSPropertyWebkitColumnProgression: return 220;
273 case CSSPropertyWebkitColumnRule: return 221; 272 case CSSPropertyWebkitColumnRule: return 221;
274 case CSSPropertyWebkitColumnRuleColor: return 222; 273 case CSSPropertyWebkitColumnRuleColor: return 222;
275 case CSSPropertyWebkitColumnRuleStyle: return 223; 274 case CSSPropertyWebkitColumnRuleStyle: return 223;
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) 667 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents)
669 { 668 {
670 // FIXME: We may want to handle stylesheets that have multiple owners 669 // FIXME: We may want to handle stylesheets that have multiple owners
671 // http://crbug.com/242125 670 // http://crbug.com/242125
672 if (sheetContents && !sheetContents->isUserStyleSheet() && sheetContents->ha sSingleOwnerNode()) 671 if (sheetContents && !sheetContents->isUserStyleSheet() && sheetContents->ha sSingleOwnerNode())
673 return getFrom(sheetContents->singleOwnerDocument()); 672 return getFrom(sheetContents->singleOwnerDocument());
674 return 0; 673 return 0;
675 } 674 }
676 675
677 } // namespace WebCore 676 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/PrintContext.cpp ('k') | Source/core/platform/DragImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698