| Index: tools/dom/templates/html/impl/impl_Element.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| index 7b8a594ce6f010fb19d0fa197c8f5a7089b12f07..cea6c0530a0b159c0dcac49b644d73f29efdf8c5 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -593,7 +593,7 @@ $if DART2JS
|
| * * [insertAdjacentElement]
|
| */
|
| void insertAdjacentHtml(String where, String html) {
|
| - if (JS('bool', '!!#.insertAdjacentHtml', this)) {
|
| + if (JS('bool', '!!#.insertAdjacentHTML', this)) {
|
| _insertAdjacentHtml(where, html);
|
| } else {
|
| _insertAdjacentNode(where, new DocumentFragment.html(html));
|
| @@ -601,7 +601,7 @@ $if DART2JS
|
| }
|
|
|
| @JSName('insertAdjacentHTML')
|
| - void _insertAdjacentHTML(String where, String text) native;
|
| + void _insertAdjacentHtml(String where, String text) native;
|
|
|
| /**
|
| * Inserts [element] into the DOM at the specified location.
|
|
|