| Index: third_party/WebKit/Source/devtools/front_end/main/Main.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/main/Main.js b/third_party/WebKit/Source/devtools/front_end/main/Main.js
|
| index 0dc04d7b98465cf8340759cd69fc87a2b51b4098..f873a7c5c2af45f7dc451b1200b28cd97c1cd62e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/main/Main.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/main/Main.js
|
| @@ -95,6 +95,7 @@ Main.Main = class {
|
| Runtime.experiments.register('audits2', 'Audits 2.0', true);
|
| Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-attach to cross-process subframes', true);
|
| Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScript frames on Timeline', true);
|
| + Runtime.experiments.register('changesDrawer', 'Changes drawer', true);
|
| Runtime.experiments.register('continueToLocationMarkers', 'Continue to location markers', true);
|
| Runtime.experiments.register('colorContrastRatio', 'Contrast ratio line in color picker', true);
|
| Runtime.experiments.register('cssTrackerPanel', 'Coverage support');
|
| @@ -132,6 +133,8 @@ Main.Main = class {
|
| Runtime.experiments.enableForTest('audits2');
|
| if (testPath.indexOf('help/') !== -1)
|
| Runtime.experiments.enableForTest('releaseNote');
|
| + if (testPath.indexOf('changes/') !== -1)
|
| + Runtime.experiments.enableForTest('changesDrawer');
|
| if (testPath.indexOf('sass/') !== -1)
|
| Runtime.experiments.enableForTest('liveSASS');
|
| }
|
|
|