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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
HTMLInterchange.cpp 40 if (node->renderer() && node->renderer()->style()->preserveNewline())
ApplyBlockElementCommand.cpp 191 if (startStyle->preserveNewline() && isNewLineAtPosition(start) && !isNewLineAtPosition(start.previous()) && start.offsetInContainerNode() > 0)
216 if (endStyle->preserveNewline() && start == end && end.offsetInContainerNode() < end.containerNode()->maxCharacterOffset()) {
250 if (!style->preserveNewline() || !position.offsetInContainerNode() || !isNewLineAtPosition(firstPositionInNode(text.get())))
InsertLineBreakCommand.cpp 87 return p.deprecatedNode()->renderer() && !p.deprecatedNode()->renderer()->style()->preserveNewline();
markup.cpp     [all...]
VisibleUnits.cpp     [all...]
htmlediting.cpp     [all...]
CompositeEditCommand.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Text.cpp 260 if (context.style()->preserveNewline()) // pre/pre-wrap/pre-line always make renderers.
333 return style->preserveNewline();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 814 if (text[0] == ' ' || (text[0] == '\n' && !style()->preserveNewline()) || text[0] == '\t') {
    [all...]
RenderObject.h     [all...]
InlineTextBox.cpp 372 return renderer()->isBR() || (renderer()->style()->preserveNewline() && len() == 1 && (*textRenderer()->text().impl())[start()] == '\n');
    [all...]
RenderBlockLineLayout.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.cpp 386 // FIXME: Do we need to be able to detect preserveNewline style even when there's no renderer?
390 if (r && r->style()->preserveNewline()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 589 static bool preserveNewline(EWhiteSpace ws)
595 bool preserveNewline() const
597 return preserveNewline(whiteSpace());
618 return !preserveNewline();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 407 m_preservesNewline = m_current.object()->isSVGInlineText() ? false : RenderStyle::preserveNewline(m_currWS);
    [all...]

Completed in 933 milliseconds