Home | History | Annotate | Download | only in editing

Lines Matching refs:markup

27 #include "markup.h"
148 Vector<UChar> markup;
150 appendElement(markup, static_cast<Element*>(node), convertBlocksToInlines && isBlock(const_cast<Node*>(node)), rangeFullySelectsNode);
152 appendStartMarkup(markup, node, 0);
153 m_reversedPrecedingMarkup.append(String::adopt(markup));
328 // This null check will prevent crashes (but create too much markup)
347 // Add the node to the markup if we're not skipping the descendants
374 // Surround the currently accumulated markup with markup for ancestors we never opened as we leave the subtree(s) rooted at those ancestors.
442 // Add an interchange newline if a paragraph break is selected and a br won't already be added to the markup to represent it.
487 // the structure and appearance of the copied markup.
535 // Disable the delete button so it's elements are not serialized into the markup,
630 // Add a wrapper span with the styles that all of the nodes in the markup inherit.
673 PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document* document, const String& markup, const String& baseURL, FragmentScriptingPermission scriptingPermission)
680 RefPtr<DocumentFragment> fragment = fakeBody->deprecatedCreateContextualFragment(markup, scriptingPermission);
841 // disable the delete button so it's elements are not serialized into the markup
908 Vector<UChar> markup;
909 append(markup, "<a href=\"");
910 append(markup, url.string());
911 append(markup, "\">");
912 appendCharactersReplacingEntities(markup, title.characters(), title.length(), EntityMaskInPCDATA);
913 append(markup, "</a>");
914 return String::adopt(markup);