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 22 matching lines...) Expand all Loading... |
33 layoutTestController.waitUntilDone(); | 33 layoutTestController.waitUntilDone(); |
34 | 34 |
35 function loaded() { | 35 function loaded() { |
36 // Bug is only trigger from another loop. | 36 // Bug is only trigger from another loop. |
37 setTimeout(addSpans, 0); | 37 setTimeout(addSpans, 0); |
38 } | 38 } |
39 </script> | 39 </script> |
40 </svg> | 40 </svg> |
41 </body> | 41 </body> |
42 </html> | 42 </html> |
OLD | NEW |