| Index: Source/devtools/front_end/main/Main.js
|
| diff --git a/Source/devtools/front_end/main/Main.js b/Source/devtools/front_end/main/Main.js
|
| index ae154769a9cc1c96a2ecf32b9ba2f5881456dbdb..3ddc7dec370f9e6b07f2ed1bce4b7c0be7cd17de 100644
|
| --- a/Source/devtools/front_end/main/Main.js
|
| +++ b/Source/devtools/front_end/main/Main.js
|
| @@ -190,7 +190,8 @@ WebInspector.Main.prototype = {
|
| console.timeStamp("Main._createApp");
|
|
|
| WebInspector.initializeUIUtils(window);
|
| - WebInspector.installPortStyles(document);
|
| + WebInspector.installComponentRootStyles(/** @type {!Element} */ (document.body));
|
| +
|
| if (Runtime.queryParam("toolbarColor") && Runtime.queryParam("textColor"))
|
| WebInspector.setToolbarColors(document, /** @type {string} */ (Runtime.queryParam("toolbarColor")), /** @type {string} */ (Runtime.queryParam("textColor")));
|
| InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.SetToolbarColors, updateToolbarColors);
|
|
|