()
| 1049 | bot.dom.appendVisibleTextLinesFromElementCommon_ = function ( |
| 1050 | elem, lines, isShownFn, childNodeFn) { |
| 1051 | function currLine() { |
| 1052 | return /** @type {string|undefined} */ (goog.array.peek(lines)) || ''; |
| 1053 | } |
| 1054 | |
| 1055 | // TODO: Add case here for textual form elements. |
| 1056 | if (bot.dom.isElement(elem, goog.dom.TagName.BR)) { |