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

Unified Diff: tests/html/hidden_dom_2_test.dart

Issue 10996010: Update tests/html to use r'' strings (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « tests/html/hidden_dom_1_test.dart ('k') | tests/html/htmlcollection_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/hidden_dom_2_test.dart
diff --git a/tests/html/hidden_dom_2_test.dart b/tests/html/hidden_dom_2_test.dart
index fd46d64538935c0fb8482777645d4063fb2497a0..262fbf81b5e2b2b59c5cff248602f1ebe4e733e3 100644
--- a/tests/html/hidden_dom_2_test.dart
+++ b/tests/html/hidden_dom_2_test.dart
@@ -10,12 +10,12 @@ main() {
useHtmlConfiguration();
test('test1', () {
- document.body.elements.add(new Element.html(@'''
+ document.body.elements.add(new Element.html(r'''
<div id='div1'>
Hello World!
</div>'''));
Element e = document.query('#div1');
- Element e2 = new Element.html(@"<div id='xx'>XX</div>");
+ Element e2 = new Element.html(r"<div id='xx'>XX</div>");
Expect.isTrue(e != null);
checkNoSuchMethod(() { confuse(e).appendChild(e2); });
« no previous file with comments | « tests/html/hidden_dom_1_test.dart ('k') | tests/html/htmlcollection_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698