| 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);
|
| }
|
|
|