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

Unified Diff: tests/html/css_test.dart

Issue 11622010: Revert "Removing some deprecated and webkit-only types." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « sdk/lib/html/scripts/htmlrenamer.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/css_test.dart
diff --git a/tests/html/css_test.dart b/tests/html/css_test.dart
index 0698f4ca09cd3516dce69783b90c7048d4f081a7..d827ab38b929ecc277ba6bfcc687ef5ccc8bdc08 100644
--- a/tests/html/css_test.dart
+++ b/tests/html/css_test.dart
@@ -27,6 +27,13 @@ main() {
-webkit-transform: translate3d(250px, 100px, 0px) perspective(500px) rotateX(30deg);
''';
document.body.nodes.add(element);
+
+ Point point = new Point(5, 2);
+ checkPoint(5, 2, point);
+ checkPoint(256, 110, window.webkitConvertPointFromNodeToPage(element, point));
+ point.y = 100;
+ checkPoint(5, 100, point);
+ checkPoint(254, 196, window.webkitConvertPointFromNodeToPage(element, point));
});
}
« no previous file with comments | « sdk/lib/html/scripts/htmlrenamer.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698