summaryrefslogtreecommitdiff
path: root/src/tests/edje/data/test_text_cursor.edc
blob: 7392e545bc8c121616f56acf5d3424814b069d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
collections {
   styles {
      style { name: "tb_style";
         base: "font=Sans font_size=20 color=#fff";
      }
   }
   group { name: "test_text_cursor";
      parts {
         part { name: "text";
            type: TEXTBLOCK;
            entry_mode: EDITABLE;
            cursor_mode: BEFORE;
            description { state: "default" 0.0;
               min: 300 300;
               text {
                  style: "tb_style";
               }
            }
         }
      }
   }
}