List of usage examples for com.google.gwt.dom.client Style getOverflowY
public String getOverflowY()
From source file:org.cruxframework.crux.core.client.utils.DOMUtils.java
License:Apache License
public static boolean isOverflowEnabled(Element e) { Style style = e.getStyle(); String overflow = style.getOverflow() + style.getOverflowX() + style.getOverflowY(); return overflow.contains("auto") || overflow.contains("scroll"); }