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

  /external/webkit/WebCore/page/
Frame.cpp 950 RefPtr<CSSMutableStyleDeclaration> blockStyle = mutableStyle->copyBlockProperties();
951 blockStyle->diff(mutableStyle.get());
952 if (blockStyle->length() > 0)
953 applyCommand(ApplyStyleCommand::create(document(), blockStyle.get(), editingAction));
    [all...]
  /external/webkit/WebCore/editing/
ApplyStyleCommand.cpp 553 RefPtr<CSSMutableStyleDeclaration> blockStyle = m_style->copyBlockProperties();
554 if (blockStyle->length())
555 applyBlockStyle(blockStyle.get());
558 if (blockStyle->length() < m_style->length() || m_styledInlineElement) {
561 blockStyle->diff(inlineStyle.get());
    [all...]

Completed in 37 milliseconds