List of usage examples for com.google.gwt.dom.client Style getCursor
public String getCursor()
From source file:org.chromium.distiller.PageParameterParser.java
License:Open Source License
/** * @return true if link is disabled i.e. not clickable because it has a text cursor. *//*from w ww . j av a2s. com*/ private static boolean isDisabledLink(AnchorElement link) { Style style = DomUtil.getComputedStyle(link); return Style.Cursor.valueOf(style.getCursor().toUpperCase()) == Style.Cursor.TEXT; }