OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <title>Tests that we paint a selection when a newline is selected.</title> | 2 <title>Tests that we paint a selection when a newline is selected.</title> |
3 <div contentEditable style="width: 100px; height: 100px; border: 5px solid salmo
n; -webkit-line-break: normal"> | 3 <div contentEditable style="width: 100px; height: 100px; border: 5px solid salmo
n; -webkit-line-break: normal"> |
4 fooooooooo baaaaaaaar | 4 fooooooooo baaaaaaaar |
5 </div> | 5 </div> |
6 <script> | 6 <script> |
7 var text = document.querySelector('div').firstChild | 7 var text = document.querySelector('div').firstChild |
8 window.getSelection().setBaseAndExtent(text, 11, text, 12); | 8 window.getSelection().setBaseAndExtent(text, 11, text, 12); |
9 // We don't care about the text dump. This is just testing painting of the selec
tion. | 9 // We don't care about the text dump. This is just testing painting of the selec
tion. |
10 if (window.testRunner) | 10 if (window.testRunner) |
11 testRunner.dumpAsText(true); | 11 testRunner.dumpAsTextWithPixelResults(); |
12 </script> | 12 </script> |
OLD | NEW |