Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 .f { | |
| 4 float: left; | |
| 5 } | |
| 6 </style> | |
| 7 <p id="p"></p> | |
| 8 <script> | |
| 9 window.onload = function (e) { | |
| 10 var p = document.getElementById('p'); | |
| 11 p.innerHTML = 't<span class="f">e</span> <span class="f">x</span>t'; | |
| 12 }; | |
| 13 </script> | |
| 14 <p>crbug.com/556733: Ensure whitespace gets created when we attached siblings fr om back to front. There should be a space between the t and the t.</p> | |
|
esprehn
2015/12/03 07:03:32
If we ever reversed the order again this test woul
rhogan
2015/12/03 19:45:32
Sure.
| |
| 15 | |
| OLD | NEW |