Files
sdk/utils/tip/froggertest.html
T
vsm@google.com 9be4ac00ed Move dart:dom to dart:dom_deprecated
Brian: Can you please look at the editor / dartc changes?

Bob: Can you look at the apidoc changes?

Stephen/Pavel: Can you guys look at the rest?

Pavel: I will update, test, and land your Dartium CL along with this change.

Review URL: https://chromiumcodereview.appspot.com//10389097

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@7587 260f80e4-7a28-3924-810f-c04153c831b5
2012-05-13 04:10:43 +00:00

20 lines
572 B
HTML

<html> <head><title>Frogger Test</title></head>
<body>
<script type="application/javascript"
src="../../lib/unittest/test_controller.js"></script>
<script type="application/dart">
#import('dart:dom_deprecated');
#import('../../lib/unittest/unittest.dart');
#import('../../lib/unittest/dom_configuration.dart');
void main() {
useDomConfiguration();
test('MathTest', () { Expect.equals(2, 1 + 1); });
test('BoolTest', () { Expect.notEquals(true, false); });
}
</script>
<iframe src="tip.html" style="visibility:hidden;display:none"></iframe>
</body>
</html>