Hi Prasant,
72 frame.setVisible(true);
73
74 p = editorPane.getLocationOnScreen();
It may not receive the right screen location that quick. You need to
wait when the frame is shown.
Since this is a test bug please remove regression labels in JIRA.
--Semyon
On 03/02/2018 06:09 AM, Prasanta Sadhukhan wrote:
Hi All,
Please review a test fix for an issue where the test fails citing
"Invalid HTML position" because pressing PAGE_DOWN does not cause the
document to scroll down to end of document.
This is because even though robot send PAGE_DOWN key events but the
focus is not in the editorpane so it does not scroll.
Proposed fix is to make sure the editorPane is in focus and caret is
present in the document so that robot PAGE_DOWN events by robot causes
it to scroll to end of document.
Bug: https://bugs.openjdk.java.net/browse/JDK-8194767
webrev: http://cr.openjdk.java.net/~psadhukhan/8194767/webrev.00/
Regards
Prasanta