| 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 bd703e52a596b31cc64ae4f7c6974b7ad04506cd..16396fa85d259b65b6f098ee4494bb8d596e7d72 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -962,6 +962,8 @@ $if DART2JS
|
| return JS('bool', '#.mozMatchesSelector(#)', this, selectors);
|
| } else if (JS('bool', '!!#.msMatchesSelector', this)) {
|
| return JS('bool', '#.msMatchesSelector(#)', this, selectors);
|
| + } else if (JS('bool', '!!#.oMatchesSelector', this)) {
|
| + return JS('bool', '#.oMatchesSelector(#)', this, selectors);
|
| } else {
|
| throw new UnsupportedError("Not supported on this platform");
|
| }
|
|
|