| Index: tools/dom/src/dart2js_CustomElementSupport.dart
|
| diff --git a/tools/dom/src/dart2js_CustomElementSupport.dart b/tools/dom/src/dart2js_CustomElementSupport.dart
|
| index 0f941fd981ec67676f798cc83f2fd756ecb0ed45..f38bae15be20a58ff8fbd7e61bf74a8e8ed87ce9 100644
|
| --- a/tools/dom/src/dart2js_CustomElementSupport.dart
|
| +++ b/tools/dom/src/dart2js_CustomElementSupport.dart
|
| @@ -106,12 +106,6 @@ void _registerCustomElement(context, document, String tag, Type type,
|
| JS('void', '#.attributeChangedCallback = #', properties,
|
| JS('=Object', '{value: #}', _makeCallbackMethod3(_callAttributeChanged)));
|
|
|
| - // TODO(blois): Bug 13220- remove once transition is complete
|
| - JS('void', '#.enteredDocumentCallback = #', properties,
|
| - JS('=Object', '{value: #}', _makeCallbackMethod(_callEnteredView)));
|
| - JS('void', '#.leftDocumentCallback = #', properties,
|
| - JS('=Object', '{value: #}', _makeCallbackMethod(_callLeftView)));
|
| -
|
| var baseProto = JS('=Object', '#.prototype', baseConstructor);
|
| var proto = JS('=Object', 'Object.create(#, #)', baseProto, properties);
|
|
|
|
|