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

Unified Diff: LayoutTests/dart/Window-postMessage.html

Issue 10025040: Use interpolation instead of concatenation. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 years, 8 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
Index: LayoutTests/dart/Window-postMessage.html
diff --git a/LayoutTests/dart/Window-postMessage.html b/LayoutTests/dart/Window-postMessage.html
index f74708e51991ca0f9c981963d91d2a6f5a94e4e3..f32878ae89783fc274de4570ffb6763faefe63e9 100644
--- a/LayoutTests/dart/Window-postMessage.html
+++ b/LayoutTests/dart/Window-postMessage.html
@@ -62,7 +62,7 @@ test(Event e) {
'message',
(Event event) {
output('response received: ${event.data}');
- output('event.source === other: ' + (event.source === other));
+ output('event.source === other: ${event.source === other}');
messageQueue.scheduleNext();
},
false);
@@ -84,7 +84,7 @@ test(Event e) {
output(var object) {
final status = document.getElementById('status');
- status.innerHTML += '$object<br>';
+ status.innerHTML = '${status.innerHTML}$object<br>';
}
</script>
« no previous file with comments | « no previous file | LayoutTests/dart/dart-imports-main.dart » ('j') | LayoutTests/dart/security/cross-frame-access.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698