{@inheritDoc}
()
| 257 | * {@inheritDoc} |
| 258 | */ |
| 259 | @Override |
| 260 | public boolean isDisplayed() { |
| 261 | final DomNode parent = getParentNode(); |
| 262 | if (parent instanceof HtmlMap && parent.isDisplayed()) { |
| 263 | return !isEmpty(); |
| 264 | } |
| 265 | return false; |
| 266 | } |
| 267 | |
| 268 | private Rectangle2D parseRect() { |
| 269 | // browsers seem to support comma and blank |
nothing calls this directly
no test coverage detected