Home | History | Annotate | Download | only in editing

Lines Matching defs:placeholder

273     // When removing a list, we must always create a placeholder to act as a point of insertion
275 RefPtr<Element> placeholder = createBreakElement(document());
276 RefPtr<Element> nodeToInsert = placeholder;
281 appendNode(placeholder, nodeToInsert);
297 // between it and listNode. So, we split up to listNode before inserting the placeholder
305 VisiblePosition insertionPoint = VisiblePosition(positionBeforeNode(placeholder.get()));
338 RefPtr<HTMLElement> placeholder = createBreakElement(document());
339 appendNode(placeholder, listItemElement);
357 // a placeholder and then recompute start and end.
358 RefPtr<Node> placeholder = insertBlockPlaceholder(start.deepEquivalent());
359 start = positionBeforeNode(placeholder.get());
385 moveParagraph(start, end, positionBeforeNode(placeholder.get()), true);