X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fdevtools%2Ffront_end%2Fui%2FSidebarPane.js;h=23af2eef3c17794f62a93cb7c1cce8186640e033;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=bccc35e1478bea53bad9c4d98929c918399a5546;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/devtools/front_end/ui/SidebarPane.js b/src/third_party/WebKit/Source/devtools/front_end/ui/SidebarPane.js index bccc35e..23af2ee 100644 --- a/src/third_party/WebKit/Source/devtools/front_end/ui/SidebarPane.js +++ b/src/third_party/WebKit/Source/devtools/front_end/ui/SidebarPane.js @@ -29,6 +29,7 @@ /** * @constructor * @extends {WebInspector.View} + * @param {string} title */ WebInspector.SidebarPane = function(title) { @@ -36,7 +37,7 @@ WebInspector.SidebarPane = function(title) this.setMinimumSize(25, 0); this.element.className = "sidebar-pane"; // Override - this.titleElement = document.createElementWithClass("div", "sidebar-pane-toolbar"); + this.titleElement = createElementWithClass("div", "sidebar-pane-toolbar"); this.bodyElement = this.element.createChild("div", "body"); this._title = title; this._expandCallback = null;