| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 function debug(str) { | 4 function debug(str) { |
| 5 var c = document.getElementById('console') | 5 var c = document.getElementById('console') |
| 6 c.appendChild(document.createTextNode(str + '\n')); | 6 c.appendChild(document.createTextNode(str + '\n')); |
| 7 } | 7 } |
| 8 | 8 |
| 9 function print(message, color) | 9 function print(message, color) |
| 10 { | 10 { |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 shouldBe("attributes.length", 1); | 97 shouldBe("attributes.length", 1); |
| 98 | 98 |
| 99 } | 99 } |
| 100 | 100 |
| 101 </script> | 101 </script> |
| 102 </head> | 102 </head> |
| 103 <body onload="runTests();"> | 103 <body onload="runTests();"> |
| 104 <pre id="console"> | 104 <pre id="console"> |
| 105 </pre> | 105 </pre> |
| 106 </body> | 106 </body> |
| 107 </html> | 107 </html> |
| OLD | NEW |