-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(core): create sample LDML keyboard that exercises effectively a…
…ll functionality For #10505
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE keyboardTest3 SYSTEM "../../../../../resources/standards-data/ldml-keyboards/techpreview/dtd/ldmlKeyboardTest3.dtd"> | ||
<keyboardTest3 conformsTo="techpreview"> | ||
<info keyboard="und.xml" author="srl295" name="test" /> | ||
|
||
<tests name="separate"> | ||
<test name="key-1"> | ||
<keystroke key="1" /> | ||
<check result="1:basic:OK" /> | ||
</test> | ||
</tests> | ||
</keyboardTest3> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
Test Keyboard | ||
--> | ||
|
||
<!DOCTYPE keyboard3 SYSTEM "../../../../../resources/standards-data/ldml-keyboards/techpreview/dtd/ldmlKeyboard3.dtd"> | ||
<keyboard3 locale="und" conformsTo="techpreview"> | ||
<info layout="qwerty" name="Test Keyboards"/> | ||
|
||
<keys> | ||
<key id="1" output="1:basic:OK"/> | ||
</keys> | ||
|
||
<layers formId="us"> | ||
<layer modifiers="none" id="base"> | ||
<row keys="gap 1 2 3 4 5 6 7 8 9 0" /> | ||
</layer> | ||
</layers> | ||
</keyboard3> |