below is a failing test method.
This turned up during binch testing for JDK-8244112 for all controls. Will exclude TextArea with a pointer to this issue.
Set priority to p3 because throwing Unsupported as todo-marker is not acceptable (and leaves no way to work around).
The test method:
/**
* TextAreaSkin throws UnsupportedOperation in dispose.
*/
@Test
public void testTextAreaSkinUnsupportedDispose() {
TextArea textArea = new TextArea();
textArea.setSkin(new TextAreaSkin(textArea));
textArea.getSkin().dispose();
}