mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
Merge pull request #2920 from NativeScript/tsenov/ui-tests
Set autocorrect to false in pages letter-spacing and transform-decora…
This commit is contained in:
@ -36,13 +36,13 @@
|
|||||||
</Button>
|
</Button>
|
||||||
<!--</android>-->
|
<!--</android>-->
|
||||||
<WrapLayout>
|
<WrapLayout>
|
||||||
<TextField text="textField" style="letter-spacing: -0.1;" />
|
<TextField text="textField" autocorrect="false" style="letter-spacing: -0.1;" />
|
||||||
<TextField text="textField" style="letter-spacing: 0;" />
|
<TextField text="textField" autocorrect="false" style="letter-spacing: 0;" />
|
||||||
<TextField text="textField" style="letter-spacing: 0.1;" />
|
<TextField text="textField" autocorrect="false" style="letter-spacing: 0.1;" />
|
||||||
</WrapLayout>
|
</WrapLayout>
|
||||||
<TextField text="textField" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 0.1;" />
|
<TextField text="textField" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 0.1;" />
|
||||||
<!--<android>-->
|
<!--<android>-->
|
||||||
<TextField style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 0.1;">
|
<TextField autocorrect="false" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 0.1;">
|
||||||
<TextField.formattedText>
|
<TextField.formattedText>
|
||||||
<FormattedString>
|
<FormattedString>
|
||||||
<FormattedString.spans>
|
<FormattedString.spans>
|
||||||
@ -54,13 +54,13 @@
|
|||||||
</TextField>
|
</TextField>
|
||||||
<!--</android>-->
|
<!--</android>-->
|
||||||
<WrapLayout>
|
<WrapLayout>
|
||||||
<TextView text="textView" style="letter-spacing: -0.1;" />
|
<TextView autocorrect="false" text="textView" style="letter-spacing: -0.1;" />
|
||||||
<TextView text="textView" style="letter-spacing: 0;" />
|
<TextView autocorrect="false" text="textView" style="letter-spacing: 0;" />
|
||||||
<TextView text="textView" style="letter-spacing: 0.1;" />
|
<TextView autocorrect="false" text="textView" style="letter-spacing: 0.1;" />
|
||||||
</WrapLayout>
|
</WrapLayout>
|
||||||
<TextView text="textView" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 0.1;" />
|
<TextView autocorrect="false" text="textView" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 0.1;" />
|
||||||
<!--<android>-->
|
<!--<android>-->
|
||||||
<TextView style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 0.1;">
|
<TextView autocorrect="false" style="text-transform: uppercase; text-decoration: underline line-through;letter-spacing: 0.1;">
|
||||||
<TextView.formattedText>
|
<TextView.formattedText>
|
||||||
<FormattedString>
|
<FormattedString>
|
||||||
<FormattedString.spans>
|
<FormattedString.spans>
|
||||||
|
@ -2,22 +2,22 @@
|
|||||||
<StackLayout>
|
<StackLayout>
|
||||||
<Label text="Label red" style="color: red;"/>
|
<Label text="Label red" style="color: red;"/>
|
||||||
<Button text="Button red" style="color: red;"/>
|
<Button text="Button red" style="color: red;"/>
|
||||||
<TextField text="TextField red" style="color: red;"/>
|
<TextField autocorrect="false" text="TextField red" style="color: red;"/>
|
||||||
<TextView text="TextView red" style="color: red;"/>
|
<TextView autocorrect="false" text="TextView red" style="color: red;"/>
|
||||||
|
|
||||||
<Label text="Label uppercase red" style="text-transform: uppercase; color: red;"/>
|
<Label text="Label uppercase red" style="text-transform: uppercase; color: red;"/>
|
||||||
<Button text="Button uppercase red" style="text-transform: uppercase; color: red;"/>
|
<Button text="Button uppercase red" style="text-transform: uppercase; color: red;"/>
|
||||||
<TextField text="TextField uppercase red" style="text-transform: uppercase; color: red;"/>
|
<TextField autocorrect="false" text="TextField uppercase red" style="text-transform: uppercase; color: red;"/>
|
||||||
<TextView text="TextView uppercase red" style="text-transform: uppercase; color: red;"/>
|
<TextView autocorrect="false" text="TextView uppercase red" style="text-transform: uppercase; color: red;"/>
|
||||||
|
|
||||||
<Label text="Label underline line-through blue" style="text-decoration: underline line-through; color: blue;"/>
|
<Label text="Label underline line-through blue" style="text-decoration: underline line-through; color: blue;"/>
|
||||||
<Button text="Button underline line-through blue" style="text-decoration: underline line-through; color: blue;"/>
|
<Button text="Button underline line-through blue" style="text-decoration: underline line-through; color: blue;"/>
|
||||||
<TextField text="TextField underline line-through blue" style="text-decoration: underline line-through; color: blue;"/>
|
<TextField autocorrect="false" text="TextField underline line-through blue" style="text-decoration: underline line-through; color: blue;"/>
|
||||||
<TextView text="TextView underline line-through blue" style="text-decoration: underline line-through; color: blue;"/>
|
<TextView autocorrect="false" text="TextView underline line-through blue" style="text-decoration: underline line-through; color: blue;"/>
|
||||||
|
|
||||||
<Label text="Label uppercase underline line-through green" style="text-transform: uppercase; text-decoration: underline line-through; color: green;"/>
|
<Label text="Label uppercase underline line-through green" style="text-transform: uppercase; text-decoration: underline line-through; color: green;"/>
|
||||||
<Button text="Button uppercase underline line-through green" style="text-transform: uppercase; text-decoration: underline line-through; color: green;"/>
|
<Button text="Button uppercase underline line-through green" style="text-transform: uppercase; text-decoration: underline line-through; color: green;"/>
|
||||||
<TextField text="TextField uppercase underline line-through green" style="text-transform: uppercase; text-decoration: underline line-through; color: green;"/>
|
<TextField autocorrect="false" text="TextField uppercase underline line-through green" style="text-transform: uppercase; text-decoration: underline line-through; color: green;"/>
|
||||||
<TextView text="TextView uppercase underline line-through green" style="text-transform: uppercase; text-decoration: underline line-through; color: green;"/>
|
<TextView autocorrect="false" text="TextView uppercase underline line-through green" style="text-transform: uppercase; text-decoration: underline line-through; color: green;"/>
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
</Page>
|
</Page>
|
Reference in New Issue
Block a user