OLD | NEW |
1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
2 <body> | 2 <body> |
3 <table id="table"> | 3 <table id="table"> |
4 <caption id="c1">PASS: Text in caption 1</caption> | 4 <caption id="c1">PASS: Text in caption 1</caption> |
5 </table> | 5 </table> |
6 <script> | 6 <script> |
7 document.body.offsetLeft; | 7 document.body.offsetLeft; |
8 var caption = document.createElement('caption'); | 8 var caption = document.createElement('caption'); |
9 caption.appendChild(document.createTextNode('FAIL: Dynamically added
caption')); | 9 caption.appendChild(document.createTextNode('FAIL: Dynamically added
caption')); |
10 | 10 |
11 var table = document.getElementById('table'); | 11 var table = document.getElementById('table'); |
12 var c1 = document.getElementById('c1'); | 12 var c1 = document.getElementById('c1'); |
13 table.insertBefore(caption, c1); | 13 table.insertBefore(caption, c1); |
14 document.body.offsetTop; | 14 document.body.offsetTop; |
15 table.removeChild(caption); | 15 table.removeChild(caption); |
16 </script> | 16 </script> |
17 </body> | 17 </body> |
18 </html> | 18 </html> |
OLD | NEW |