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 17 matching lines...) Expand all Loading... |
28 bb.append("<!doctype html><html><head><title>Title</title><script>if (window
.layoutTestController) layoutTestController.dumpAsText(); </" + "script></head><
body>PASS</body><script>if (window.layoutTestController) layoutTestController.no
tifyDone();</scr" + "ipt></html>"); | 28 bb.append("<!doctype html><html><head><title>Title</title><script>if (window
.layoutTestController) layoutTestController.dumpAsText(); </" + "script></head><
body>PASS</body><script>if (window.layoutTestController) layoutTestController.no
tifyDone();</scr" + "ipt></html>"); |
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 click(link); | 32 click(link); |
33 } | 33 } |
34 runTest(); | 34 runTest(); |
35 </script> | 35 </script> |
36 </body> | 36 </body> |
37 </html> | 37 </html> |
OLD | NEW |