Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: utils/tip/froggertest.html

Issue 10389097: Move dart:dom to dart:dom_deprecated (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes from review Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/apidoc/mdn/extract.dart ('k') | utils/tip/tip.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> <head><title>Frogger Test</title></head> 1 <html> <head><title>Frogger Test</title></head>
2 <body> 2 <body>
3 <script type="application/javascript" 3 <script type="application/javascript"
4 src="../../lib/unittest/test_controller.js"></script> 4 src="../../lib/unittest/test_controller.js"></script>
5 <script type="application/dart"> 5 <script type="application/dart">
6 #import('dart:dom'); 6 #import('dart:dom_deprecated');
7 #import('../../lib/unittest/unittest.dart'); 7 #import('../../lib/unittest/unittest.dart');
8 #import('../../lib/unittest/dom_configuration.dart'); 8 #import('../../lib/unittest/dom_configuration.dart');
9 9
10 void main() { 10 void main() {
11 useDomConfiguration(); 11 useDomConfiguration();
12 test('MathTest', () { Expect.equals(2, 1 + 1); }); 12 test('MathTest', () { Expect.equals(2, 1 + 1); });
13 test('BoolTest', () { Expect.notEquals(true, false); }); 13 test('BoolTest', () { Expect.notEquals(true, false); });
14 } 14 }
15 </script> 15 </script>
16 16
17 <iframe src="tip.html" style="visibility:hidden;display:none"></iframe> 17 <iframe src="tip.html" style="visibility:hidden;display:none"></iframe>
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW
« no previous file with comments | « utils/apidoc/mdn/extract.dart ('k') | utils/tip/tip.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698