diff options
author | Dave Andreoli <dave@gurumeditation.it> | 2018-01-05 18:22:53 +0100 |
---|---|---|
committer | Dave Andreoli <dave@gurumeditation.it> | 2018-01-05 18:28:41 +0100 |
commit | 5c5e29daa5455bc625b8287cf2437197e49ffa2a (patch) | |
tree | ba664c93c827b104025d54b73d55f6e2c40ff836 /data | |
parent | 3d07b90461818804ed51b6dcaed9f05c0d0155bb (diff) | |
download | efl-5c5e29daa5455bc625b8287cf2437197e49ffa2a.tar.gz |
Elm focus navigation: other 2 failing tests
Added a new test "Focus 6", it's an not very
complex elm layout: a swallowed genlist and three
buttons in an edje box.
You should be able to navigate the layout with
just the keyboard, that is currently impossible.
With the help of the mouse click you can randomly
make the key navigation work again... this is
mostly random.
...should help to make progress on T6453
Diffstat (limited to 'data')
-rw-r--r-- | data/elementary/objects/test.edc | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/data/elementary/objects/test.edc b/data/elementary/objects/test.edc index 6574ab3adf..cef0249d98 100644 --- a/data/elementary/objects/test.edc +++ b/data/elementary/objects/test.edc @@ -1011,4 +1011,46 @@ collections { } } } + group { "focus_test_6"; + parts { + rect { "list_bg"; + description { state: "default"; + color: 200 0 0 100; + rel1.to: "list_swallow"; + rel2.to: "list_swallow"; + } + } + rect { "box_bg"; + description { state: "default"; + color: 0 200 0 100; + rel1.to: "box"; + rel2.to: "box"; + } + } + box { "box"; + description { state: "default"; + rel1.relative: 0.0 0.0; + rel2.relative: 1.0 0.1; + box { + layout: "horizontal"; + padding: 4 4; + align: 1.0 0.5; + min: 1 0; + } + } + } + swallow { "list_swallow"; + description { state: "default"; + rel1.relative: 0.0 0.2; + rel2.relative: 0.5 1.0; + } + } + swallow { "label_swallow"; + description { state: "default"; + rel1.relative: 0.0 0.1; + rel2.relative: 1.0 0.2; + } + } + } + } } |