Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/inspector/front-end/
DBreakpointsSidebarPane.js36 this.emptyElement = document.createElement("div");
37 this.emptyElement.className = "info";
38 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
40 this.bodyElement.appendChild(this.emptyElement);
154 this.bodyElement.removeChild(this.emptyElement);
166 this.bodyElement.appendChild(this.emptyElement);
187 this.bodyElement.appendChild(this.emptyElement);
202 this.emptyElement = document.createElement("div");
203 this.emptyElement.className = "info";
204 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
[all …]
/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()