Index: Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js |
diff --git a/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js b/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js |
index a3ac404651acb932f26d7cf86829a1900f98de86..c3383963e3c8e4371714fccaf83eaebec92f2211 100644 |
--- a/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js |
+++ b/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js |
@@ -37,10 +37,10 @@ WebInspector.NativeBreakpointsSidebarPane = function(title) |
WebInspector.SidebarPane.call(this, title); |
this.registerRequiredCSS("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"); |