-
Bug
-
Resolution: Fixed
-
P3
-
jfx11, 9, jfx14
below is a failing test method.
This turned up during binch testing forJDK-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();
}
This turned up during binch testing for
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();
}
- duplicates
-
JDK-8261077 TextAreaSkin.dispose() throws UnsupportedOperationException
- Closed
- relates to
-
JDK-8244112 Skin implementations: must not violate contract of dispose
- Resolved
-
JDK-8241364 ☂ Cleanup skin implementations to allow switching
- Open