Home
last modified time | relevance | path

Searched refs:emptyElement (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DNativeBreakpointsSidebarPane.js43 this.emptyElement = document.createElement("div");
44 this.emptyElement.className = "info";
45 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
47 this.bodyElement.appendChild(this.emptyElement);
62 this.bodyElement.removeChild(this.emptyElement);
78 this.bodyElement.appendChild(this.emptyElement);
90 this.bodyElement.appendChild(this.emptyElement);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DWatchExpressionsSidebarPane.js115 this.emptyElement = document.createElement("div");
116 this.emptyElement.className = "info";
117 this.emptyElement.textContent = WebInspector.UIString("No Watch Expressions");
129 …this.emptyElement.addEventListener("contextmenu", this._emptyElementContextMenu.bind(this), false);
214 if (!this.emptyElement.parentNode)
215 this.element.appendChild(this.emptyElement);
217 if (this.emptyElement.parentNode)
218 this.element.removeChild(this.emptyElement);
256 … !== this.element && event.target !== this.propertiesElement && event.target !== this.emptyElement)
DBreakpointsSidebarPane.js42 this.emptyElement = this.bodyElement.createChild("div", "info");
43 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
54 … this.emptyElement.addEventListener("contextmenu", this._emptyElementContextMenu.bind(this), true);
237 this.bodyElement.removeChild(this.emptyElement);
249 this.bodyElement.appendChild(this.emptyElement);
270 this.bodyElement.appendChild(this.emptyElement);
294 … this.emptyElement.addEventListener("contextmenu", this._emptyElementContextMenu.bind(this), true);
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DXMLWriter.java748 public void emptyElement (String uri, String localName, in emptyElement() method in XMLWriter
875 public void emptyElement (String uri, String localName) in emptyElement() method in XMLWriter
878 emptyElement(uri, localName, "", EMPTY_ATTS); in emptyElement()
897 public void emptyElement (String localName) in emptyElement() method in XMLWriter
900 emptyElement("", localName, "", EMPTY_ATTS); in emptyElement()