| OLD | NEW |
| (Empty) |
| 1 <html> <head><title>Frogger Test</title></head> | |
| 2 <body> | |
| 3 <script type="application/javascript" | |
| 4 src="../../lib/unittest/test_controller.js"></script> | |
| 5 <script type="application/dart"> | |
| 6 #import('dart:dom_deprecated'); | |
| 7 #import('../../lib/unittest/unittest.dart'); | |
| 8 #import('../../lib/unittest/dom_configuration.dart'); | |
| 9 | |
| 10 void main() { | |
| 11 useDomConfiguration(); | |
| 12 test('MathTest', () { Expect.equals(2, 1 + 1); }); | |
| 13 test('BoolTest', () { Expect.notEquals(true, false); }); | |
| 14 } | |
| 15 </script> | |
| 16 | |
| 17 <iframe src="tip.html" style="visibility:hidden;display:none"></iframe> | |
| 18 </body> | |
| 19 </html> | |
| OLD | NEW |