* Requests the runtime to update the height of this element to the specified * value. The runtime will schedule this request and attempt to process it * as soon as possible. * @param {number} newHeight * @public
(newHeight)
| 866 | * @public |
| 867 | */ |
| 868 | forceChangeHeight(newHeight) { |
| 869 | Services.mutatorForDoc(this.getAmpDoc()).forceChangeSize( |
| 870 | this.element, |
| 871 | newHeight, |
| 872 | /* newWidth */ undefined |
| 873 | ); |
| 874 | } |
| 875 | |
| 876 | /** |
| 877 | * Return a promise that requests the runtime to update |
no test coverage detected