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

  /external/webkit/WebCore/dom/
StyledElement.h 62 CSSMutableStyleDeclaration* inlineStyleDecl() const { return m_inlineStyleDecl.get(); }
  /external/webkit/WebCore/editing/
markup.cpp 691 RefPtr<CSSMutableStyleDeclaration> inlineStyleDecl = element->getInlineStyleDecl();
692 style->merge(inlineStyleDecl.get());
    [all...]
ApplyStyleCommand.cpp 281 CSSMutableStyleDeclaration* inlineStyleDecl = elem->inlineStyleDecl();
282 return (!inlineStyleDecl || inlineStyleDecl->isEmpty()) && elem->getAttribute(classAttr) == styleSpanClassString();
737 CSSMutableStyleDeclaration* inlineStyleDecl = element->getInlineStyleDecl();
740 RefPtr<CSSValue> value = inlineStyleDecl->getPropertyCSSValue(CSSPropertyFontSize);
742 inlineStyleDecl->removeProperty(CSSPropertyFontSize, true);
746 inlineStyleDecl->setProperty(CSSPropertyFontSize, String::number(desiredFontSize) + "px", false, false);
747 setNodeAttribute(element.get(), styleAttr, inlineStyleDecl->cssText());
749 if (inlineStyleDecl->isEmpty())
    [all...]

Completed in 22 milliseconds