OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body onload="loaded()"> | 3 <body onload="loaded()"> |
4 <svg> | 4 <svg> |
5 <title>This test used to be laid out on a single line, instead of multiple ones<
/title> | 5 <title>This test used to be laid out on a single line, instead of multiple ones<
/title> |
6 <text id="text" y="50"></text> | 6 <text id="text" y="50"></text> |
7 | 7 |
8 <script> | 8 <script> |
9 var text = document.getElementsByTagName("text")[0]; | 9 var text = document.getElementsByTagName("text")[0]; |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 layoutTestController.waitUntilDone(); | 27 layoutTestController.waitUntilDone(); |
28 | 28 |
29 function loaded() { | 29 function loaded() { |
30 // Bug is only trigger from another loop. | 30 // Bug is only trigger from another loop. |
31 setTimeout(addSpans, 0); | 31 setTimeout(addSpans, 0); |
32 } | 32 } |
33 </script> | 33 </script> |
34 </svg> | 34 </svg> |
35 </body> | 35 </body> |
36 </html> | 36 </html> |
OLD | NEW |