Removes focus from this element.
()
| 1592 | * Removes focus from this element. |
| 1593 | */ |
| 1594 | public void blur() { |
| 1595 | final HtmlPage page = (HtmlPage) getPage(); |
| 1596 | if (page.getFocusedElement() != this) { |
| 1597 | return; |
| 1598 | } |
| 1599 | |
| 1600 | page.setFocusedElement(null); |
| 1601 | } |
| 1602 | |
| 1603 | /** |
| 1604 | * <span style="color:red">INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.</span><br> |
no test coverage detected