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

Unified Diff: samples/third_party/todomvc/test/todomvc_markdone_test.html

Issue 15755017: Switch from DRT to content shell. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: samples/third_party/todomvc/test/todomvc_markdone_test.html
diff --git a/samples/third_party/todomvc/test/todomvc_markdone_test.html b/samples/third_party/todomvc/test/todomvc_markdone_test.html
index b69bac8e7dfd2eaf83258b67d38315776cb2b009..b819198bb8ea89c683bf93488e87b85a2456a3da 100644
--- a/samples/third_party/todomvc/test/todomvc_markdone_test.html
+++ b/samples/third_party/todomvc/test/todomvc_markdone_test.html
@@ -35,12 +35,12 @@ main() {
deliverChangesSync();
// To ensure we click in the correct place, we calculate x, y offset where
- // we want to click based on the coordinates given by DumpRenderTree, and
+ // we want to click based on the coordinates given by content shell, and
// then adapt those offset in the current window. This makes is possible to
// debug the application in Dartium reliably.
var bounding = document.body.getBoundingClientRect();
- // The x, y location of body in the DumpRenderTree output was: (117, 130)
+ // The x, y location of body in the content shell output was: (117, 130)
// and location of the node we want to click was: (119, 398)
int x = bounding.left.toInt() + (119 - 117);
int y = bounding.top.toInt() + (398 - 130);
« no previous file with comments | « samples/tests/samples/lib/layout/layout_test.dart ('k') | sdk/lib/_internal/compiler/implementation/lib/native_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698