Chromium Code Reviews| Index: sdk/lib/html/dart2js/html_dart2js.dart |
| =================================================================== |
| --- sdk/lib/html/dart2js/html_dart2js.dart (revision 39571) |
| +++ sdk/lib/html/dart2js/html_dart2js.dart (working copy) |
| @@ -9630,7 +9630,7 @@ |
| * Adds the specified text after the last child of this element. |
| */ |
| void appendText(String text) { |
| - this.insertAdjacentText('beforeend', text); |
| + this.append(new Text(text)); |
| } |
| /** |