File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 42684268 } while ( tokens . matchToken ( "and" ) ) ;
42694269 }
42704270 } else if ( eventName === "mutation" ) {
4271- mutationSpec = { } ;
4271+ mutationSpec = {
4272+ attributeOldValue : true ,
4273+ characterDataOldValue : true ,
4274+ } ;
42724275 if ( tokens . matchToken ( "of" ) ) {
42734276 do {
42744277 if ( tokens . matchToken ( "anything" ) ) {
42804283 mutationSpec [ "childList" ] = true ;
42814284 } else if ( tokens . matchToken ( "attributes" ) ) {
42824285 mutationSpec [ "attributes" ] = true ;
4283- mutationSpec [ "attributeOldValue" ] = true ;
42844286 } else if ( tokens . matchToken ( "subtree" ) ) {
42854287 mutationSpec [ "subtree" ] = true ;
42864288 } else if ( tokens . matchToken ( "characterData" ) ) {
42874289 mutationSpec [ "characterData" ] = true ;
4288- mutationSpec [ "characterDataOldValue" ] = true ;
42894290 } else if ( tokens . currentToken ( ) . type === "ATTRIBUTE_REF" ) {
42904291 var attribute = tokens . consumeToken ( ) ;
42914292 if ( mutationSpec [ "attributeFilter" ] == null ) {
You can’t perform that action at this time.
0 commit comments