Chromium Code Reviews| Index: tools/dom/templates/html/impl/impl_Element.darttemplate |
| =================================================================== |
| --- tools/dom/templates/html/impl/impl_Element.darttemplate (revision 39571) |
| +++ tools/dom/templates/html/impl/impl_Element.darttemplate (working copy) |
| @@ -714,7 +714,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)); |
| } |
| /** |