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

Unified Diff: client/tests/client/samples/dartcombat/dartcombat_tests.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/samples/total/src/ZoomTracker.dart ('k') | client/tests/client/samples/total/total_tests.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/client/samples/dartcombat/dartcombat_tests.dart
diff --git a/client/tests/client/samples/dartcombat/dartcombat_tests.dart b/client/tests/client/samples/dartcombat/dartcombat_tests.dart
index fcf0877fdd741a4974368548fef3ba06fbcaa3d5..6f5823dfe145ce66f71a96c7f12d22e33daaab86 100644
--- a/client/tests/client/samples/dartcombat/dartcombat_tests.dart
+++ b/client/tests/client/samples/dartcombat/dartcombat_tests.dart
@@ -18,7 +18,7 @@ main() {
// add relative URL to stylesheet to the correct location. Note: The CSS is
// needed because the app uses a flexbox layout, which is then used to
// interpret UI events (mousedown/up/click).
- var link = document.createElement('link');
+ var link = new Element.tag('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = '../../samples/dartcombat/dartcombat.css';
« no previous file with comments | « client/samples/total/src/ZoomTracker.dart ('k') | client/tests/client/samples/total/total_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698