488390-1.html (638B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script type="text/javascript"> 5 function boom() 6 { 7 var s = document.getElementById("s"); 8 s.remove(); 9 } 10 </script> 11 </head> 12 <body onload="boom();"> 13 <!-- Need the bidi control chars to trigger non-fluid continuations, and 14 need the span right around the div so that the prevSibling of the node 15 whose frame we try to get doesn't have a frame map entry (so that we 16 don't have a useful hint). --> 17 <span>‮a‬b 18 <span><div></div></span> 19 <span id="s">This text should be gone</span> 20 </span> 21 </body> 22 </html>