| 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 35e8e2ffc9c4241e892495858b71b43fe1e7887d..3a593cfcd936215880f33926e7cb73c4b24fc2c9 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -850,9 +850,9 @@ $if DART2JS
|
|
|
| static String _determineTransitionEventType(EventTarget e) {
|
| // Unfortunately the normal 'ontransitionend' style checks don't work here.
|
| - if (_Device.isWebKit) {
|
| + if (Device.isWebKit) {
|
| return 'webkitTransitionEnd';
|
| - } else if (_Device.isOpera) {
|
| + } else if (Device.isOpera) {
|
| return 'oTransitionEnd';
|
| }
|
| return 'transitionend';
|
| @@ -1018,7 +1018,7 @@ class _ElementFactoryProvider {
|
| final match = _START_TAG_REGEXP.firstMatch(html);
|
| if (match != null) {
|
| tag = match.group(1).toLowerCase();
|
| - if (_Device.isIE && _TABLE_TAGS.containsKey(tag)) {
|
| + if (Device.isIE && _TABLE_TAGS.containsKey(tag)) {
|
| return _createTableForIE(html, tag);
|
| }
|
| parentTag = _CUSTOM_PARENT_TAG_MAP[tag];
|
|
|