Home
last modified time | relevance | path

Searched refs:selfClosing (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DAtomicHTMLToken.h62 bool selfClosing() const in selfClosing() function
127 m_selfClosing = token.selfClosing(); in AtomicHTMLToken()
173 m_selfClosing = token.selfClosing(); in AtomicHTMLToken()
DHTMLConstructionSite.h52 , selfClosing(false) in HTMLConstructionSiteTask()
68 bool selfClosing; member
214 void attachLater(ContainerNode* parent, PassRefPtr<Node> child, bool selfClosing = false);
DCompactHTMLToken.h57 bool selfClosing() const { return m_selfClosing; } in selfClosing() function
DHTMLConstructionSite.cpp118 if (task.selfClosing) in executeInsertTask()
272 …MLConstructionSite::attachLater(ContainerNode* parent, PassRefPtr<Node> prpChild, bool selfClosing) in attachLater() argument
280 task.selfClosing = selfClosing; in attachLater()
656 attachLater(currentNode(), element, token->selfClosing()); in insertForeignElement()
657 if (!token->selfClosing()) in insertForeignElement()
DCompactHTMLToken.cpp70 m_selfClosing = token->selfClosing(); in CompactHTMLToken()
DHTMLToken.h239 bool selfClosing() const in selfClosing() function
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py1327 def unknown_starttag(self, name, attrs, selfClosing=0): argument
1337 if not self.isSelfClosingTag(name) and not selfClosing:
1349 if selfClosing or self.isSelfClosingTag(name):