Chromium Code Reviews| 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 991fa217662660904313c28caa12d55559f3c053..cbea8c1aed4623ebbe6782df2bbf15f8827e0620 100644 |
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate |
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate |
| @@ -887,7 +887,7 @@ $if DART2JS |
| } else if (JS('bool', '!!#.mozMatchesSelector', this)) { |
| return JS('bool', '#.mozMatchesSelector(#)', this, selectors); |
| } else if (JS('bool', '!!#.msMatchesSelector', this)) { |
| - return matches = JS('bool', '#.msMatchesSelector(#)', this, selectors); |
|
blois
2013/08/13 23:08:45
weird. but good fix!
|
| + return JS('bool', '#.msMatchesSelector(#)', this, selectors); |
| } else { |
| throw new UnsupportedError("Not supported on this platform"); |
| } |