Skip to content

Commit

Permalink
Removed element.setCurrentStyle()
Browse files Browse the repository at this point in the history
For GH-141
  • Loading branch information
hrj committed Oct 20, 2016
1 parent 3e27918 commit f34cdd5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,12 @@ public void setStyle(final Object value) {
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Cannot set style property");
}

/*
currentStyle is not a standard property. See GH 141.
public void setCurrentStyle(final Object value) {
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Cannot set currentStyle property");
}
*/

public String getClassName() {
final String className = this.getAttribute("class");
Expand Down

0 comments on commit f34cdd5

Please sign in to comment.