OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script type='text/javascript'> | 4 <script type='text/javascript'> |
5 if (window.layoutTestController) { | 5 if (window.layoutTestController) { |
6 layoutTestController.dumpAsText(); | 6 layoutTestController.dumpAsText(); |
7 layoutTestController.waitUntilDone(); | 7 layoutTestController.waitUntilDone(); |
8 } | 8 } |
9 </script> | 9 </script> |
10 </head> | 10 </head> |
(...skipping 18 matching lines...) Expand all Loading... |
29 var blob = bb.getBlob("text/html", "inline"); | 29 var blob = bb.getBlob("text/html", "inline"); |
30 var link = document.getElementById("blob-url"); | 30 var link = document.getElementById("blob-url"); |
31 link.href = window.webkitURL.createObjectURL(blob); | 31 link.href = window.webkitURL.createObjectURL(blob); |
32 link.removeAttribute('download'); | 32 link.removeAttribute('download'); |
33 click(link); | 33 click(link); |
34 } | 34 } |
35 runTest(); | 35 runTest(); |
36 </script> | 36 </script> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |