MCPcopy Index your code
hub / github.com/HtmlUnit/htmlunit / blur

Method blur

src/main/java/org/htmlunit/html/DomElement.java:1594–1601  ·  view source on GitHub ↗

Removes focus from this element.

()

Source from the content-addressed store, hash-verified

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>

Callers 1

pressAccessKeyMethod · 0.45

Calls 3

getFocusedElementMethod · 0.95
setFocusedElementMethod · 0.95
getPageMethod · 0.65

Tested by

no test coverage detected