--- old/modules/graphics/src/main/java/com/sun/glass/ui/win/WinAccessible.java 2015-09-17 10:44:39.696650400 -0700 +++ new/modules/graphics/src/main/java/com/sun/glass/ui/win/WinAccessible.java 2015-09-17 10:44:39.075614900 -0700 @@ -945,10 +945,11 @@ } else { node = (Node)getAttribute(PARENT); if (node == null) { - /* scene root node case */ + /* This is the root node of the scene or the scene itself */ Scene scene = (Scene)getAttribute(SCENE); WinAccessible acc = (WinAccessible)getAccessible(scene); - if (acc == null || acc.isDisposed()) return 0L; + /* Return 0 if we are already at the scene or if scene is null */ + if (acc == null || acc == this || acc.isDisposed()) return 0L; return acc.getNativeAccessible(); } }