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

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

Issue 2704343003: Catch up the spec update in CSS Rhythmic Sizing (Closed)
Patch Set: Sorted CSSProperties.json5 alphabetically (meade@'s nit) Created 3 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 * 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 987 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 case CSSPropertyFontFeatureSettings: 998 case CSSPropertyFontFeatureSettings:
999 return 514; 999 return 514;
1000 case CSSPropertyVariable: 1000 case CSSPropertyVariable:
1001 return 515; 1001 return 515;
1002 case CSSPropertyFontDisplay: 1002 case CSSPropertyFontDisplay:
1003 return 516; 1003 return 516;
1004 case CSSPropertyContain: 1004 case CSSPropertyContain:
1005 return 517; 1005 return 517;
1006 case CSSPropertyD: 1006 case CSSPropertyD:
1007 return 518; 1007 return 518;
1008 case CSSPropertySnapHeight: 1008 case CSSPropertyLineHeightStep:
1009 return 519; 1009 return 519;
1010 case CSSPropertyBreakAfter: 1010 case CSSPropertyBreakAfter:
1011 return 520; 1011 return 520;
1012 case CSSPropertyBreakBefore: 1012 case CSSPropertyBreakBefore:
1013 return 521; 1013 return 521;
1014 case CSSPropertyBreakInside: 1014 case CSSPropertyBreakInside:
1015 return 522; 1015 return 522;
1016 case CSSPropertyColumnCount: 1016 case CSSPropertyColumnCount:
1017 return 523; 1017 return 523;
1018 case CSSPropertyColumnGap: 1018 case CSSPropertyColumnGap:
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
1352 } 1352 }
1353 } 1353 }
1354 1354
1355 if (needsPagesMeasuredUpdate) 1355 if (needsPagesMeasuredUpdate)
1356 cssPropertiesHistogram.count(totalPagesMeasuredCSSSampleId()); 1356 cssPropertiesHistogram.count(totalPagesMeasuredCSSSampleId());
1357 1357
1358 m_CSSBits.clearAll(); 1358 m_CSSBits.clearAll();
1359 } 1359 }
1360 1360
1361 } // namespace blink 1361 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698