X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fdevtools%2Ffront_end%2Fcomponents%2FNativeBreakpointsSidebarPane.js;h=0baf374ebf922fe7b2edd1c8a6423da88b481b45;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=a3ac404651acb932f26d7cf86829a1900f98de86;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js b/src/third_party/WebKit/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js index a3ac404..0baf374 100644 --- a/src/third_party/WebKit/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js +++ b/src/third_party/WebKit/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js @@ -35,12 +35,12 @@ WebInspector.NativeBreakpointsSidebarPane = function(title) { WebInspector.SidebarPane.call(this, title); - this.registerRequiredCSS("breakpointsList.css"); + this.registerRequiredCSS("components/breakpointsList.css"); - this.listElement = document.createElement("ol"); + this.listElement = createElement("ol"); this.listElement.className = "breakpoint-list"; - this.emptyElement = document.createElement("div"); + this.emptyElement = createElement("div"); this.emptyElement.className = "info"; this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");