* This causes a synchronous handling of all the Mutation Observer's tracked * mutations. This does nothing until the mutation observer is actually * registered on the first Custom Element definition.
()
| 489 | * registered on the first Custom Element definition. |
| 490 | */ |
| 491 | sync() { |
| 492 | if (this.mutationObserver_) { |
| 493 | this.handleRecords_(this.mutationObserver_.takeRecords()); |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | /** |
| 498 | * Handle all the Mutation Observer's Mutation Records. |
no test coverage detected