* Runs the specified mutation on the element and ensures that remeasures and * layouts are performed for the affected elements. * * This method should be called whenever a significant mutations are done * on the DOM that could affect layout of elements inside this subtree or * its sib
(mutator, opt_element)
| 947 | * @return {!Promise} |
| 948 | */ |
| 949 | mutateElement(mutator, opt_element) { |
| 950 | return this.measureMutateElement(null, mutator, opt_element); |
| 951 | } |
| 952 | |
| 953 | /** |
| 954 | * Runs the specified measure, then runs the mutation on the element and |
no test coverage detected