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

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

Issue 1314923005: Deprecate 'intrinsic' and 'min-intrinsic' CSS keywords (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/parser/CSSPropertyParser.cpp ('k') | no next file » | 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 927 matching lines...) Expand 10 before | Expand all | Expand 10 after
938 case MediaStreamStop: 938 case MediaStreamStop:
939 return "'MediaStream.stop()' is deprecated and will be removed in M47, a round November 2015. Please use 'MediaStream.active' instead."; 939 return "'MediaStream.stop()' is deprecated and will be removed in M47, a round November 2015. Please use 'MediaStream.active' instead.";
940 940
941 case MediaStreamEnded: 941 case MediaStreamEnded:
942 return "'MediaStream.ended' is deprecated and will be removed in M47, ar ound November 2015. Please use 'MediaStream.active' instead."; 942 return "'MediaStream.ended' is deprecated and will be removed in M47, ar ound November 2015. Please use 'MediaStream.active' instead.";
943 943
944 case PermissionStatusStatus: 944 case PermissionStatusStatus:
945 return "PermissionStatus.status is deprecated and will be removed in M47 , around November 2015. Please use PermissionStatus.state instead."; 945 return "PermissionStatus.status is deprecated and will be removed in M47 , around November 2015. Please use PermissionStatus.state instead.";
946 946
947 case ElementOffsetParent: 947 case ElementOffsetParent:
948 return "'Element.offsetParent' is deprecated and will be removed in M47, around Novemver 2015. The offset* attributes are only standardized and widely s upported for HTML elements."; 948 return "'Element.offsetParent' is deprecated and will be removed in M47, around Novemver 2015. The offset* attributes are only standardized and widely s upported for HTML elements.";
jbroman 2015/08/25 21:04:06 drive-by: if you're fixing the spelling of "Novemb
cbiesinger 2015/08/25 21:06:43 Because they were outside of my editor window at t
949 949
950 case ElementOffsetTop: 950 case ElementOffsetTop:
951 return "'Element.offsetTop' is deprecated and will be removed in M47, ar ound Novemver 2015. The offset* attributes are only standardized and widely supp orted for HTML elements."; 951 return "'Element.offsetTop' is deprecated and will be removed in M47, ar ound Novemver 2015. The offset* attributes are only standardized and widely supp orted for HTML elements.";
952 952
953 case ElementOffsetLeft: 953 case ElementOffsetLeft:
954 return "'Element.offsetLeft' is deprecated and will be removed in M47, a round Novemver 2015. The offset* attributes are only standardized and widely sup ported for HTML elements."; 954 return "'Element.offsetLeft' is deprecated and will be removed in M47, a round November 2015. The offset* attributes are only standardized and widely sup ported for HTML elements.";
955 955
956 case ElementOffsetWidth: 956 case ElementOffsetWidth:
957 return "'Element.offsetWidth' is deprecated and will be removed in M47, around Novemver 2015. The offset* attributes are only standardized and widely su pported for HTML elements."; 957 return "'Element.offsetWidth' is deprecated and will be removed in M47, around November 2015. The offset* attributes are only standardized and widely su pported for HTML elements.";
958 958
959 case ElementOffsetHeight: 959 case ElementOffsetHeight:
960 return "'Element.offsetHeight' is deprecated and will be removed in M47, around Novemver 2015. The offset* attributes are only standardized and widely s upported for HTML elements."; 960 return "'Element.offsetHeight' is deprecated and will be removed in M47, around November 2015. The offset* attributes are only standardized and widely s upported for HTML elements.";
961 961
962 case PrefixedPerformanceClearResourceTimings: 962 case PrefixedPerformanceClearResourceTimings:
963 return replacedBy("Performance.webkitClearResourceTimings", "Performance .clearResourceTimings"); 963 return replacedBy("Performance.webkitClearResourceTimings", "Performance .clearResourceTimings");
964 964
965 case PrefixedPerformanceSetResourceTimingBufferSize: 965 case PrefixedPerformanceSetResourceTimingBufferSize:
966 return replacedBy("Performance.webkitSetResourceTimingBufferSize", "Perf ormance.setResourceTimingBufferSize"); 966 return replacedBy("Performance.webkitSetResourceTimingBufferSize", "Perf ormance.setResourceTimingBufferSize");
967 967
968 case PrefixedPerformanceResourceTimingBufferFull: 968 case PrefixedPerformanceResourceTimingBufferFull:
969 return replacedBy("Performance.onwebkitresourcetimingbufferfull", "Perfo rmance.onresourcetimingbufferfull"); 969 return replacedBy("Performance.onwebkitresourcetimingbufferfull", "Perfo rmance.onresourcetimingbufferfull");
970 970
971 case FetchAPIRequestContext: 971 case FetchAPIRequestContext:
972 return "Request.context is deprecated and will be removed in M46 (see: h ttps://www.chromestatus.com/feature/5534702526005248)."; 972 return "Request.context is deprecated and will be removed in M46 (see: h ttps://www.chromestatus.com/feature/5534702526005248).";
973 973
974 case LegacyCSSValueIntrinsic:
975 return "The 'intrinsic' CSS keyword is deprecated and will be removed in M47, around November 2015. Use the standard 'max-content' keyword instead.";
976
977 case LegacyCSSValueMinIntrinsic:
978 return "The 'min-intrinsic' CSS keyword is deprecated and will be remove d in M47, around November 2015. Use the standard 'min-content' keyword instead." ;
979
974 // Features that aren't deprecated don't have a deprecation message. 980 // Features that aren't deprecated don't have a deprecation message.
975 default: 981 default:
976 return String(); 982 return String();
977 } 983 }
978 } 984 }
979 985
980 void UseCounter::count(CSSParserContext context, CSSPropertyID feature) 986 void UseCounter::count(CSSParserContext context, CSSPropertyID feature)
981 { 987 {
982 ASSERT(feature >= firstCSSProperty); 988 ASSERT(feature >= firstCSSProperty);
983 ASSERT(feature <= lastUnresolvedCSSProperty); 989 ASSERT(feature <= lastUnresolvedCSSProperty);
(...skipping 27 matching lines...) Expand all
1011 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) 1017 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents)
1012 { 1018 {
1013 // FIXME: We may want to handle stylesheets that have multiple owners 1019 // FIXME: We may want to handle stylesheets that have multiple owners
1014 // http://crbug.com/242125 1020 // http://crbug.com/242125
1015 if (sheetContents && sheetContents->hasSingleOwnerNode()) 1021 if (sheetContents && sheetContents->hasSingleOwnerNode())
1016 return getFrom(sheetContents->singleOwnerDocument()); 1022 return getFrom(sheetContents->singleOwnerDocument());
1017 return 0; 1023 return 0;
1018 } 1024 }
1019 1025
1020 } // namespace blink 1026 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/parser/CSSPropertyParser.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698