HomeSort by relevance Sort by last modified time
    Searched refs:inlineStyleDecl (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/editing/
RemoveCSSPropertyCommand.cpp 45 CSSMutableStyleDeclaration* style = m_element->inlineStyleDecl();
53 CSSMutableStyleDeclaration* style = m_element->inlineStyleDecl();
ApplyStyleCommand.cpp 78 CSSMutableStyleDeclaration* inlineStyleDecl = elem->inlineStyleDecl();
79 return (!inlineStyleDecl || inlineStyleDecl->isEmpty()) && elem->getAttribute(classAttr) == styleSpanClassString();
379 CSSMutableStyleDeclaration* inlineStyleDecl = element->getInlineStyleDecl();
382 RefPtr<CSSValue> value = inlineStyleDecl->getPropertyCSSValue(CSSPropertyFontSize);
384 inlineStyleDecl->removeProperty(CSSPropertyFontSize, true);
388 inlineStyleDecl->setProperty(CSSPropertyFontSize, String::number(desiredFontSize) + "px", false, false);
389 setNodeAttribute(element.get(), styleAttr, inlineStyleDecl->cssText());
391 if (inlineStyleDecl->isEmpty())
    [all...]
EditingStyle.cpp 552 CSSMutableStyleDeclaration* inlineStyle = element->inlineStyleDecl();
738 mergeStyle(element->inlineStyleDecl());
    [all...]
markup.cpp 455 RefPtr<CSSMutableStyleDeclaration> inlineStyleDecl = element->getInlineStyleDecl();
456 style->merge(inlineStyleDecl.get());
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSElementCustom.cpp 66 markDOMObjectWrapper(markStack, globalData, static_cast<StyledElement*>(element)->inlineStyleDecl());
JSNodeCustom.cpp 116 if (CSSMutableStyleDeclaration* style = static_cast<StyledElement*>(node)->inlineStyleDecl()) {
  /external/webkit/Source/WebCore/dom/
StyledElement.h 57 CSSMutableStyleDeclaration* inlineStyleDecl() const { return m_inlineStyleDecl.get(); }
StyledElement.cpp 437 if (CSSMutableStyleDeclaration* style = inlineStyleDecl())
  /external/webkit/Source/WebCore/rendering/
RenderTreeAsText.cpp 192 CSSMutableStyleDeclaration* inlineStyleDecl = elem->inlineStyleDecl();
193 return (!inlineStyleDecl || inlineStyleDecl->length() == 0);