1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/tests/bug633044-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +<html> 1.5 + <head> 1.6 + <script> 1.7 + onload = function() { 1.8 + var el; 1.9 + while (el = document.querySelector("br")) { 1.10 + el.parentNode.removeChild(el); 1.11 + } 1.12 + focus(); 1.13 + document.body.focus(); 1.14 + getSelection().collapse(document.body.firstChild, 0); 1.15 + } 1.16 + </script> 1.17 +</head> 1.18 + 1.19 +<body style="white-space:pre-wrap;" contenteditable></body></html>