* Intended to be implemented by subclasses. Tests whether the element * supports the specified layout. By default only Layout_Enum.NODISPLAY is * supported. * @param {!Layout_Enum} layout * @return {boolean} * @public
(layout)
| 381 | * @public |
| 382 | */ |
| 383 | isLayoutSupported(layout) { |
| 384 | return layout == Layout_Enum.NODISPLAY; |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Intended to be implemented by subclasses. Tests whether the element |