* Returns the time when the document has become visible for the first time. * If document has not yet become visible, the returned value is `null`. * @return {?time}
()
| 704 | * @return {?time} |
| 705 | */ |
| 706 | getFirstVisibleTime() { |
| 707 | return /** @type {?number} */ ( |
| 708 | this.signals_.get(AmpDocSignals_Enum.FIRST_VISIBLE) |
| 709 | ); |
| 710 | } |
| 711 | |
| 712 | /** |
| 713 | * Returns the time when the document has become visible for the last time. |
no test coverage detected