Home
last modified time | relevance | path

Searched refs:styleElement (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/page/
DFrame.cpp974 RefPtr<Element> styleElement = elem; in selectionComputedStyle() local
978 styleElement = document()->createElementNS(xhtmlNamespaceURI, "span", ec); in selectionComputedStyle()
981 styleElement->setAttribute(styleAttr, m_typingStyle->cssText().impl(), ec); in selectionComputedStyle()
984 styleElement->appendChild(document()->createEditingTextNode(""), ec); in selectionComputedStyle()
988 elem->appendChild(styleElement, ec); in selectionComputedStyle()
994 parent->insertBefore(styleElement, next, ec); in selectionComputedStyle()
996 parent->appendChild(styleElement, ec); in selectionComputedStyle()
1001 nodeToRemove = styleElement.get(); in selectionComputedStyle()
1004 return computedStyle(styleElement.release()); in selectionComputedStyle()
1447 RefPtr<Element> styleElement = document()->createElementNS(xhtmlNamespaceURI, "span", ec); in styleForSelectionStart() local
[all …]
/external/webkit/WebCore/inspector/front-end/
DSourceFrame.js200 var styleElement = this.element.contentDocument.createElement("style");
201 headElement.appendChild(styleElement);
221 styleElement.textContent = styleText;
/external/webkit/WebCore/editing/
DApplyStyleCommand.cpp311 RefPtr<HTMLElement> styleElement = createHTMLElement(document, spanTag); in createStyleSpanElement() local
312 styleElement->setAttribute(classAttr, styleSpanClassString()); in createStyleSpanElement()
313 return styleElement.release(); in createStyleSpanElement()
1573 RefPtr<Element> styleElement = createStyleSpanElement(document()); in addInlineStyleIfNeeded() local
1574 styleElement->setAttribute(styleAttr, styleChange.cssStyle()); in addInlineStyleIfNeeded()
1575 surroundNodeRangeWithElement(startNode, endNode, styleElement.release()); in addInlineStyleIfNeeded()
/external/webkit/WebCore/
DChangeLog-2006-12-3110766 (WebCore::Node::isLink): should be styleElement, a bug?
DChangeLog-2008-08-1014749 Rename CSSParser::styleElement to CSSParser::m_styleElement