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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js

Issue 2472213005: DevTools: introduce "Track CSS Usage" experiment (Closed)
Patch Set: Unused CSS highlight in sources panel Created 4 years, 1 month 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 /* eslint-disable indent */ 4 /* eslint-disable indent */
5 (function(window) { 5 (function(window) {
6 6
7 // DevToolsAPI --------------------------------------------------------------- - 7 // DevToolsAPI --------------------------------------------------------------- -
8 8
9 /** 9 /**
10 * @unrestricted 10 * @unrestricted
(...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 'textEditorAutocompletion', 954 'textEditorAutocompletion',
955 'textEditorAutoDetectIndent', 955 'textEditorAutoDetectIndent',
956 'textEditorBracketMatching', 956 'textEditorBracketMatching',
957 'textEditorIndent', 957 'textEditorIndent',
958 'timelineCaptureFilmStrip', 958 'timelineCaptureFilmStrip',
959 'timelineCaptureLayersAndPictures', 959 'timelineCaptureLayersAndPictures',
960 'timelineCaptureMemory', 960 'timelineCaptureMemory',
961 'timelineCaptureNetwork', 961 'timelineCaptureNetwork',
962 'timeline-details', 962 'timeline-details',
963 'timelineEnableJSSampling', 963 'timelineEnableJSSampling',
964 'timelineMarkUnusedCSS',
caseq 2016/11/04 21:10:02 WAT? Why has this changed?
964 'timelineOverviewMode', 965 'timelineOverviewMode',
965 'timelinePanelDetailsSplitViewState', 966 'timelinePanelDetailsSplitViewState',
966 'timelinePanelRecorsSplitViewState', 967 'timelinePanelRecorsSplitViewState',
967 'timelinePanelTimelineStackSplitViewState', 968 'timelinePanelTimelineStackSplitViewState',
968 'timelinePerspective', 969 'timelinePerspective',
969 'timeline-split', 970 'timeline-split',
970 'timelineTreeGroupBy', 971 'timelineTreeGroupBy',
971 'timeline-view', 972 'timeline-view',
972 'timelineViewMode', 973 'timelineViewMode',
973 'uiTheme', 974 'uiTheme',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1231 * @return {boolean} 1232 * @return {boolean}
1232 */ 1233 */
1233 DOMTokenList.prototype.toggle = function(token, force) { 1234 DOMTokenList.prototype.toggle = function(token, force) {
1234 if (arguments.length === 1) 1235 if (arguments.length === 1)
1235 force = !this.contains(token); 1236 force = !this.contains(token);
1236 return this.__originalDOMTokenListToggle(token, !!force); 1237 return this.__originalDOMTokenListToggle(token, !!force);
1237 }; 1238 };
1238 } 1239 }
1239 1240
1240 })(window); 1241 })(window);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698