Index: tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate |
diff --git a/tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate b/tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate |
index d533e49c52d76cf0c80e5e263e033d1802dd44ce..122b6f982cae05c3f4cd53a64c186316837c2b91 100644 |
--- a/tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate |
+++ b/tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate |
@@ -58,8 +58,11 @@ $endif |
* [CSS selector specification](http://www.w3.org/TR/css3-selectors/). |
*/ |
ElementList<Element> querySelectorAll(String selectors) => |
+$if JSINTEROP |
+ _querySelectorAll(selectors); |
+$else |
new _FrozenElementList._wrap(_querySelectorAll(selectors)); |
- |
+$endif |
String get innerHtml { |