* Updates the layout box of the element. * Should only be called by Resources. * @param {!./layout-rect.LayoutRectDef} layoutBox * @param {boolean} sizeChanged
(layoutBox, sizeChanged = false)
| 956 | * @param {boolean} sizeChanged |
| 957 | */ |
| 958 | updateLayoutBox(layoutBox, sizeChanged = false) { |
| 959 | if (this.isBuilt()) { |
| 960 | this.onMeasure(sizeChanged); |
| 961 | } |
| 962 | } |
| 963 | |
| 964 | /** |
| 965 | * Calls onLayoutMeasure() on the BaseElement implementation. |
no test coverage detected