| <!DOCTYPE html> | 
 | <!-- | 
 | Copyright (c) 2013, the Dart project authors.  Please see the AUTHORS file | 
 | for details. All rights reserved. Use of this source code is governed by a | 
 | BSD-style license that can be found in the LICENSE file. | 
 | --> | 
 |  | 
 | <html> | 
 |   <body> | 
 |     <template id="test" bind="{{ mouse }}"> | 
 |       ({{ value.offsetX }}, {{ value.offsetY }}) | 
 |     </template> | 
 |     <script type="application/dart"> | 
 |       import 'dart:html'; | 
 |       import 'package:polymer_expressions/polymer_expressions.dart'; | 
 |       import 'package:mdv/mdv.dart' as mdv; | 
 |  | 
 |       main() { | 
 |         mdv.initialize(); | 
 |  | 
 |         var globals = { | 
 |           'mouse': document.onMouseMove, | 
 |         }; | 
 |  | 
 |         query('#test') | 
 |             ..bindingDelegate = new PolymerExpressions(globals: globals) | 
 |             ..model = null; | 
 |       } | 
 |     </script> | 
 |     <script src="packages/browser/dart.js"></script> | 
 |   </body> | 
 | </html> |