returns true if points to first visible text inside block element
| 6408 | |
| 6409 | /// returns true if points to first visible text inside block element |
| 6410 | bool ldomXPointerEx::isFirstVisibleTextInBlock() |
| 6411 | { |
| 6412 | if ( !isText() ) |
| 6413 | return false; |
| 6414 | ldomXPointerEx pos(*this); |
| 6415 | return !pos.prevVisibleText(true); |
| 6416 | } |
| 6417 | |
| 6418 | // sentence navigation |
| 6419 |
no test coverage detected