Update ui-tests-app

This commit is contained in:
vchimev
2016-04-15 15:26:27 +03:00
parent d7fd68b7ac
commit 0e57fc795a
2 changed files with 39 additions and 14 deletions

View File

@ -1,8 +1,14 @@
<Page> <Page>
<StackLayout> <StackLayout>
<Label text="labelLabel" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 10;" /> <WrapLayout>
<Label style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 10;"> <Label text="labelLabel" style="letter-spacing: -1;" />
<Label text="labelLabel" style="letter-spacing: 0;" />
<Label text="labelLabel" style="letter-spacing: 1;" />
</WrapLayout>
<Label text="labelLabel" style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;" />
<Label style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;">
<Label.formattedText> <Label.formattedText>
<FormattedString> <FormattedString>
<FormattedString.spans> <FormattedString.spans>
@ -13,9 +19,15 @@
</Label.formattedText> </Label.formattedText>
</Label> </Label>
<Button text="buttonButton" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 10;" /> <WrapLayout>
<android> <Button text="buttonButton" style="letter-spacing: -1;" />
<Button style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 10;"> <Button text="buttonButton" style="letter-spacing: 0;" />
<Button text="buttonButton" style="letter-spacing: 1;" />
</WrapLayout>
<Button text="buttonButton" style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;" />
<!--<android>-->
<Button style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;">
<Button.formattedText> <Button.formattedText>
<FormattedString> <FormattedString>
<FormattedString.spans> <FormattedString.spans>
@ -25,11 +37,17 @@
</FormattedString> </FormattedString>
</Button.formattedText> </Button.formattedText>
</Button> </Button>
</android> <!--</android>-->
<TextField text="textField" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 10;" /> <WrapLayout>
<android> <TextField text="textField" style="letter-spacing: -1;" />
<TextField style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 10;"> <TextField text="textField" style="letter-spacing: 0;" />
<TextField text="textField" style="letter-spacing: 1;" />
</WrapLayout>
<TextField text="textField" style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;" />
<!--<android>-->
<TextField style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;">
<TextField.formattedText> <TextField.formattedText>
<FormattedString> <FormattedString>
<FormattedString.spans> <FormattedString.spans>
@ -39,11 +57,17 @@
</FormattedString> </FormattedString>
</TextField.formattedText> </TextField.formattedText>
</TextField> </TextField>
</android> <!--</android>-->
<TextView text="textView" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 10;" /> <WrapLayout>
<android> <TextView text="textView" style="letter-spacing: -1;" />
<TextView style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 10;"> <TextView text="textView" style="letter-spacing: 0;" />
<TextView text="textView" style="letter-spacing: 1;" />
</WrapLayout>
<TextView text="textView" style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;" />
<!--<android>-->
<TextView style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;">
<TextView.formattedText> <TextView.formattedText>
<FormattedString> <FormattedString>
<FormattedString.spans> <FormattedString.spans>
@ -53,7 +77,7 @@
</FormattedString> </FormattedString>
</TextView.formattedText> </TextView.formattedText>
</TextView> </TextView>
</android> <!--</android>-->
</StackLayout> </StackLayout>
</Page> </Page>

View File

@ -38,6 +38,7 @@ examples.set("xmlbasics", "bindings/xmlbasics");
examples.set("background", "css/background"); examples.set("background", "css/background");
examples.set("formatted", "css/decoration-transform-formattedtext"); examples.set("formatted", "css/decoration-transform-formattedtext");
examples.set("spacing", "css/letter-spacing");
examples.set("decoration", "css/text-decoration"); examples.set("decoration", "css/text-decoration");
examples.set("transform", "css/text-transform"); examples.set("transform", "css/text-transform");
examples.set("whitespace", "css/white-space"); examples.set("whitespace", "css/white-space");