| Index: tools/dom/templates/html/impl/impl_MutationEvent.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_MutationEvent.darttemplate b/tools/dom/templates/html/impl/impl_MutationEvent.darttemplate
|
| index dcd696700b346d5928e2feefe2af55c1a3219c39..546064065b27401a3f232488fbbccf034bbcfcf5 100644
|
| --- a/tools/dom/templates/html/impl/impl_MutationEvent.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_MutationEvent.darttemplate
|
| @@ -9,8 +9,8 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| {bool canBubble: false, bool cancelable: false, Node relatedNode,
|
| String prevValue, String newValue, String attrName, int attrChange: 0}) {
|
|
|
| - var event = document.$dom_createEvent('MutationEvent');
|
| - event.$dom_initMutationEvent(type, canBubble, cancelable, relatedNode,
|
| + var event = document._createEvent('MutationEvent');
|
| + event._initMutationEvent(type, canBubble, cancelable, relatedNode,
|
| prevValue, newValue, attrName, attrChange);
|
| return event;
|
| }
|
|
|