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 = 'a<span class="f">x</span> <span class="f">y</span >b'; | |
rune
2017/02/27 10:38:06
I don't think you're guaranteed that you have gene
emilio
2017/02/27 12:09:32
This is literally a copy-pasted test case from htt
| |
12 }; | |
13 </script> | |
OLD | NEW |