| 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 text.parentNode.focus(); |
| 8 window.getSelection().setBaseAndExtent(text, 11, text, 12); | 9 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. | 10 // We don't care about the text dump. This is just testing painting of the selec
tion. |
| 10 if (window.testRunner) | 11 if (window.testRunner) |
| 11 testRunner.dumpAsTextWithPixelResults(); | 12 testRunner.dumpAsTextWithPixelResults(); |
| 12 </script> | 13 </script> |
| OLD | NEW |