Bugzilla – Bug 520133
PropertyGrid: menu items on ContexMenu can't raise 'focused' state and 'selected' state
Last modified: 2009-07-08 10:33:06 UTC
PROBLEM STATEMENT: when using "Down" key to put focus on menu item, the menu item can't raise 'focused' state. REPRO: 1. run uia2atk/test/samples/propertygrid.py. 2. run the attached scripts RESULTS: Action: Press <Down>. Reset_item States: [STATE_ENABLED, STATE_FOCUSABLE, STATE_SELECTABLE, STATE_SENSITIVE, STATE_SHOWING, STATE_VISIBLE] ................. Action: Press <Down>. .................. Description_item3 States: [STATE_CHECKED, STATE_ENABLED, STATE_FOCUSABLE, STATE_SELECTABLE, STATE_SENSITIVE, STATE_SHOWING, STATE_VISIBLE] EXPECTED RESULTS: Action: Press <Down>. Reset_item States: [STATE_ENABLED, STATE_FOCUSABLE, STATE_SELECTABLE, STATE_SENSITIVE, STATE_SHOWING, STATE_VISIBLE, STATE_FOCUSED ] ................. Action: Press <Down>. .................. Description_item3 States: [STATE_CHECKED, STATE_ENABLED, STATE_FOCUSABLE, STATE_SELECTABLE, STATE_SENSITIVE, STATE_SHOWING, STATE_VISIBLE, STATE_FOCUSED]
Created attachment 303733 [details] test state
Since ContextMenu is obsolete API, I will de-prioritize bugs about it.
(In reply to comment #0) sorry, the "EXPECTED RESULTS" should be: EXPECTED RESULTS: Action: Press <Down>. Reset_item States: [STATE_ENABLED, STATE_FOCUSABLE, STATE_SELECTABLE, STATE_SENSITIVE, STATE_SHOWING, STATE_VISIBLE, STATE_FOCUSED, STATE_SELECTED ] ................. Action: Press <Down>. .................. Description_item3 States: [STATE_CHECKED, STATE_ENABLED, STATE_FOCUSABLE, STATE_SELECTABLE, STATE_SENSITIVE, STATE_SHOWING, STATE_VISIBLE, STATE_FOCUSED, STATE_SELECTED]