Home | History | Annotate | Download | only in editing

Lines Matching refs:br

678     // We are certain that the position is at a line break, but it may be a br or a preserved newline.
840 // Normally deletion will leave a br as a placeholder.
891 // Add a br if pruning an empty block level element caused a collapse. For example:
896 // cause 'baz' to collapse onto the line with 'foobar' unless we insert a br.
972 // too, <div><b><br></b></div> for example. Save it so that we can preserve it later.
991 // Add a br if pruning an empty block level element caused a collapse. For example:
996 // cause 'baz' to collapse onto the line with 'foobar' unless we insert a br.
1003 // Need an updateLayout here in case inserting the br has split a text node.
1060 // e.g. <ul><li>hello <ul><li><br></li></ul> </li></ul> should become <ul><li>hello</li> <ul><li><br></li></ul> </ul> after this section
1062 // e.g. <ul><li> <ul><li><br></li></ul> hello</li></ul> should become <ul><li> <div><br></div> hello</li></ul> at the end
1121 RefPtr<Node> br = createBreakElement(document());
1122 // We want to replace this quoted paragraph with an unquoted one, so insert a br
1124 insertNodeBefore(br, highestBlockquote);
1125 VisiblePosition atBR(positionBeforeNode(br.get()));
1126 // If the br we inserted collapsed, for example foo<br><blockquote>...</blockquote>, insert
1129 insertNodeBefore(createBreakElement(document()), br);
1137 // A line break is either a br or a preserved newline.