| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 3 <!-- Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 4 for details. All rights reserved. Use of this source code is governed by a | 4 for details. All rights reserved. Use of this source code is governed by a |
| 5 BSD-style license that can be found in the LICENSE file. --> | 5 BSD-style license that can be found in the LICENSE file. --> |
| 6 | 6 |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <title>dart:js test</title> | 10 <title>dart:js test</title> |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 } | 182 } |
| 183 | 183 |
| 184 var someProto = { role: "proto" }; | 184 var someProto = { role: "proto" }; |
| 185 var someObject = Object.create(someProto); | 185 var someObject = Object.create(someProto); |
| 186 someObject.role = "object"; | 186 someObject.role = "object"; |
| 187 | 187 |
| 188 </script> | 188 </script> |
| 189 <script type="application/dart" src="js_test.dart"></script> | 189 <script type="application/dart" src="js_test.dart"></script> |
| 190 </body> | 190 </body> |
| 191 </html> | 191 </html> |
| OLD | NEW |