| Index: third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
|
| index 05135f54da0874285bf6e0d8f02b7197dae19eb0..d0db2418ad688e44b04cb4a7b35c86732c5eb5d7 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
|
| @@ -442,7 +442,12 @@ InspectorTest.dumpNavigatorViewInAllModes = function(view)
|
| InspectorTest.dumpNavigatorViewInMode = function(view, mode)
|
| {
|
| InspectorTest.addResult(view instanceof WebInspector.SourcesNavigatorView ? "Sources:" : "Content Scripts:");
|
| - WebInspector.moduleSetting("navigatorGrouping").set(mode);
|
| + if (WebInspector.moduleSetting("navigatorGroupByFrame").get() !== mode.includes("frame"))
|
| + WebInspector.moduleSetting("navigatorGroupByFrame").set(mode.includes("frame"));
|
| + if (WebInspector.moduleSetting("navigatorGroupByDomain") !== mode.includes("domain"))
|
| + WebInspector.moduleSetting("navigatorGroupByDomain").set(mode.includes("domain"));
|
| + if (WebInspector.moduleSetting("navigatorGroupByFolder") !== mode.includes("folder"))
|
| + WebInspector.moduleSetting("navigatorGroupByFolder").set(mode.includes("folder"));
|
| InspectorTest.addResult("-------- Setting mode: [" + mode + "]");
|
| InspectorTest.dumpNavigatorView(view);
|
| }
|
|
|