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

Unified Diff: samples/swarm/htmlconverter_test.py

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « samples/swarm/htmlconverter.py ('k') | samples/third_party/dromaeo/Dromaeo.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/swarm/htmlconverter_test.py
diff --git a/samples/swarm/htmlconverter_test.py b/samples/swarm/htmlconverter_test.py
index 9055e1abd679fc9563c7d5acd061bc77e86f07d3..dbe0cf5c70e1a8d8b82ef5cafa4b992010f12529 100644
--- a/samples/swarm/htmlconverter_test.py
+++ b/samples/swarm/htmlconverter_test.py
@@ -27,7 +27,7 @@ TEST1_HTML = """
<!-- embed source code -->
<script type="application/dart">
- #import('dart:dom');
+ #import('dart:dom_deprecated');
main() {
window.alert('hi');
}
@@ -61,7 +61,7 @@ TEST2_HTML = """
TEST2_DART = """
#library('test2');
-#import('dart:dom');
+#import('dart:dom_deprecated');
main() {
window.alert('test2!');
}
@@ -91,7 +91,7 @@ TEST3_HTML = """
"""
TEST3_DART = """
-#import('dart:dom');
+#import('dart:dom_deprecated');
#source('test_3a.dart');
#source('test_3b.dart');
"""
@@ -133,7 +133,7 @@ TEST4_HTML = """
"""
TEST4_DART = """
-#import('dart:dom');
+#import('dart:dom_deprecated');
#import('../samples/ui_lib/observable/observable.dart');
main() {
@@ -184,7 +184,7 @@ TEST5_HTML = """
<!-- embed source code -->
<script type="application/dart">
- #import('dart:dom');
+ #import('dart:dom_deprecated');
main() {
var element = document.getElementById("test5div");
if (element == null) {
« no previous file with comments | « samples/swarm/htmlconverter.py ('k') | samples/third_party/dromaeo/Dromaeo.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698