Home | History | Annotate | Download | only in editing

Lines Matching refs:isBlock

139     void wrapWithStyleNode(StylePropertySet*, const Document&, bool isBlock = false);
143 void appendStyleNodeOpenTag(StringBuilder&, StylePropertySet*, const Document&, bool isBlock = false);
144 const String& styleNodeCloseTag(bool isBlock = false);
178 appendElement(markup, toElement(node), convertBlocksToInlines && isBlock(&node), rangeFullySelectsNode);
188 void StyledMarkupAccumulator::wrapWithStyleNode(StylePropertySet* style, const Document& document, bool isBlock)
191 appendStyleNodeOpenTag(openTag, style, document, isBlock);
193 appendString(styleNodeCloseTag(isBlock));
196 void StyledMarkupAccumulator::appendStyleNodeOpenTag(StringBuilder& out, StylePropertySet* style, const Document& document, bool isBlock)
200 if (isBlock)
208 const String& StyledMarkupAccumulator::styleNodeCloseTag(bool isBlock)
212 return isBlock ? divClose : styleSpanClose;
383 if (isBlock(n) && canHaveChildrenForEditing(n) && next == pastEnd)