2 <div>This tests find with queries that contain line breaks, for text broken into paragraphs using brs, divs, and preserved newlines.
</div>
3 <div id=
"find">test
<br>over
<br>brs
<br><div>test
</div><div>over
</div><div>divs
</div><pre>test
8 window
.testRunner
.dumpAsText();
9 if (!document
.execCommand("FindString", false, "test\nover\nbrs"))
10 document
.body
.innerText
= "Find with line breaks failed over brs.";
11 if (!document
.execCommand("FindString", false, "test\nover\ndivs"))
12 document
.body
.innerText
= "Find with line breaks failed over divs.";
13 if (!document
.execCommand("FindString", false, "test\nover\nnewlines"))
14 document
.body
.innerText
= "Find with line breaks failed over newlines.";