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

Unified Diff: tools/dom/templates/html/dartium/impl_MouseEvent.darttemplate

Issue 1771113002: More UIEvent attribute movement in 45 roll. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Removed fixed analyzer problems Created 4 years, 9 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: tools/dom/templates/html/dartium/impl_MouseEvent.darttemplate
diff --git a/tools/dom/templates/html/dartium/impl_MouseEvent.darttemplate b/tools/dom/templates/html/dartium/impl_MouseEvent.darttemplate
index 02bc4fb07c4eb6a9dd6ffcff8916704eae8fd36a..c4dc511110dd8b36191013dc7118f59382ae7a5e 100644
--- a/tools/dom/templates/html/dartium/impl_MouseEvent.darttemplate
+++ b/tools/dom/templates/html/dartium/impl_MouseEvent.darttemplate
@@ -64,4 +64,12 @@ $!MEMBERS
@DomName('MouseEvent.screenX')
@DomName('MouseEvent.screenY')
Point get screen => new Point(_screenX, _screenY);
+
+ @DomName('MouseEvent.layerX')
+ @DomName('MouseEvent.layerY')
+ Point get layer => new Point(_layerX, _layerY);
+
+ @DomName('MouseEvent.pageX')
+ @DomName('MouseEvent.pageY')
+ Point get page => new Point(_pageX, _pageY);
}
« no previous file with comments | « tools/dom/templates/html/dart2js/impl_MouseEvent.darttemplate ('k') | tools/dom/templates/html/impl/impl_UIEvent.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698