Chromium Code Reviews| Index: sdk/lib/html/dart2js/html_dart2js.dart |
| =================================================================== |
| --- sdk/lib/html/dart2js/html_dart2js.dart (revision 15525) |
| +++ sdk/lib/html/dart2js/html_dart2js.dart (working copy) |
| @@ -6840,7 +6840,7 @@ |
| } |
| return null; |
| } |
| - Element get $m_lastElementChild() => elements.last; |
| + Element get $m_lastElementChild => elements.last; |
|
Anton Muhin
2012/11/29 18:59:11
that should be fixed in http://code.google.com/p/d
hausner
2012/11/29 19:07:43
Hmm, I don't find the place where this gets genera
|
| Element get nextElementSibling => null; |
| Element get previousElementSibling => null; |
| Element get offsetParent => null; |
| @@ -11685,7 +11685,7 @@ |
| // API level getter and setter for Location. |
| // TODO: The cross domain safe wrapper can be inserted here or folded into |
| // _LocationWrapper. |
| - LocalLocation get location() { |
| + LocalLocation get location { |
| // Firefox work-around for Location. The Firefox location object cannot be |
| // made to behave like a Dart object so must be wrapped. |
| var result = _location; |
| @@ -11782,7 +11782,7 @@ |
| this); |
| } |
| - IDBFactory get indexedDB() => |
| + IDBFactory get indexedDB => |
| JS('IDBFactory', |
| '#.indexedDB || #.webkitIndexedDB || #.mozIndexedDB', |
| this, this, this); |