Home | History | Annotate | Download | only in editing

Lines Matching refs:isBlock

134     void wrapWithStyleNode(StylePropertySet*, const Document&, bool isBlock = false);
138 void appendStyleNodeOpenTag(StringBuilder&, StylePropertySet*, const Document&, bool isBlock = false);
139 const String& styleNodeCloseTag(bool isBlock = false);
173 appendElement(markup, toElement(node), convertBlocksToInlines && isBlock(&node), rangeFullySelectsNode);
182 void StyledMarkupAccumulator::wrapWithStyleNode(StylePropertySet* style, const Document& document, bool isBlock)
185 appendStyleNodeOpenTag(openTag, style, document, isBlock);
187 appendString(styleNodeCloseTag(isBlock));
190 void StyledMarkupAccumulator::appendStyleNodeOpenTag(StringBuilder& out, StylePropertySet* style, const Document& document, bool isBlock)
194 if (isBlock)
202 const String& StyledMarkupAccumulator::styleNodeCloseTag(bool isBlock)
206 return isBlock ? divClose : styleSpanClose;
370 if (isBlock(n) && canHaveChildrenForEditing(n) && next == pastEnd)