File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ export function test_IntegrationTest_Transform_Decoration_Spacing_WithoutFormatt
306306 let view = new buttonModule . Button ( ) ;
307307 helper . buildUIAndRunTest ( view , function ( views : Array < viewModule . View > ) {
308308 view . text = "NormalText" ;
309- view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 10 ;" ) ;
309+ view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 1 ;" ) ;
310310
311311 TKUnit . assertEqual ( view . style . textTransform , enums . TextTransform . uppercase , "TextTransform" ) ;
312312 TKUnit . assertEqual ( view . style . textDecoration , enums . TextDecoration . underline , "TextDecoration" ) ;
@@ -319,7 +319,7 @@ export function test_IntegrationTest_Transform_Decoration_Spacing_WithFormattedT
319319 let formattedString = helper . _generateFormattedString ( ) ;
320320 helper . buildUIAndRunTest ( view , function ( views : Array < viewModule . View > ) {
321321 view . formattedText = formattedString ;
322- view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 10 ;" ) ;
322+ view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 1 ;" ) ;
323323
324324 TKUnit . assertEqual ( view . style . textTransform , enums . TextTransform . uppercase , "TextTransform" ) ;
325325 TKUnit . assertEqual ( view . style . textDecoration , enums . TextDecoration . underline , "TextDecoration" ) ;
Original file line number Diff line number Diff line change @@ -601,7 +601,7 @@ export function test_IntegrationTest_Transform_Decoration_Spacing_WithoutFormatt
601601 let view = new LabelModule . Label ( ) ;
602602 helper . buildUIAndRunTest ( view , function ( views : Array < viewModule . View > ) {
603603 view . text = "NormalText" ;
604- view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 10 ;" ) ;
604+ view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 1 ;" ) ;
605605
606606 TKUnit . assertEqual ( view . style . textTransform , enums . TextTransform . uppercase , "TextTransform" ) ;
607607 TKUnit . assertEqual ( view . style . textDecoration , enums . TextDecoration . underline , "TextDecoration" ) ;
@@ -614,7 +614,7 @@ export function test_IntegrationTest_Transform_Decoration_Spacing_WithFormattedT
614614 let formattedString = helper . _generateFormattedString ( ) ;
615615 helper . buildUIAndRunTest ( view , function ( views : Array < viewModule . View > ) {
616616 view . formattedText = formattedString ;
617- view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 10 ;" ) ;
617+ view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 1 ;" ) ;
618618
619619 TKUnit . assertEqual ( view . style . textTransform , enums . TextTransform . uppercase , "TextTransform" ) ;
620620 TKUnit . assertEqual ( view . style . textDecoration , enums . TextDecoration . underline , "TextDecoration" ) ;
Original file line number Diff line number Diff line change @@ -545,7 +545,7 @@ export function test_IntegrationTest_Transform_Decoration_Spacing_WithoutFormatt
545545 TKUnit . assertTrue ( isNaN ( view . style . letterSpacing ) , "LetterSpacing" ) ;
546546
547547 view . text = "NormalText" ;
548- view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 10 ;" ) ;
548+ view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 1 ;" ) ;
549549
550550 TKUnit . assertEqual ( view . style . textTransform , enums . TextTransform . uppercase , "TextTransform" ) ;
551551 TKUnit . assertEqual ( view . style . textDecoration , enums . TextDecoration . underline , "TextDecoration" ) ;
@@ -558,7 +558,7 @@ export function test_IntegrationTest_Transform_Decoration_Spacing_WithFormattedT
558558 let formattedString = helper . _generateFormattedString ( ) ;
559559 helper . buildUIAndRunTest ( view , function ( views : Array < viewModule . View > ) {
560560 view . formattedText = formattedString ;
561- view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 10 ;" ) ;
561+ view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 1 ;" ) ;
562562
563563 TKUnit . assertEqual ( view . style . textTransform , enums . TextTransform . uppercase , "TextTransform" ) ;
564564 TKUnit . assertEqual ( view . style . textDecoration , enums . TextDecoration . underline , "TextDecoration" ) ;
Original file line number Diff line number Diff line change @@ -499,7 +499,7 @@ export function test_IntegrationTest_Transform_Decoration_Spacing_WithoutFormatt
499499 let view = new textViewModule . TextView ( ) ;
500500 helper . buildUIAndRunTest ( view , function ( views : Array < viewModule . View > ) {
501501 view . text = "NormalText" ;
502- view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 10 ;" ) ;
502+ view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 1 ;" ) ;
503503
504504 TKUnit . assertEqual ( view . style . textTransform , enums . TextTransform . uppercase , "TextTransform" ) ;
505505 TKUnit . assertEqual ( view . style . textDecoration , enums . TextDecoration . underline , "TextDecoration" ) ;
@@ -512,7 +512,7 @@ export function test_IntegrationTest_Transform_Decoration_Spacing_WithFormattedT
512512 let formattedString = helper . _generateFormattedString ( ) ;
513513 helper . buildUIAndRunTest ( view , function ( views : Array < viewModule . View > ) {
514514 view . formattedText = formattedString ;
515- view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 10 ;" ) ;
515+ view . setInlineStyle ( "text-transform: uppercase; text-decoration: underline; letter-spacing: 1 ;" ) ;
516516
517517 TKUnit . assertEqual ( view . style . textTransform , enums . TextTransform . uppercase , "TextTransform" ) ;
518518 TKUnit . assertEqual ( view . style . textDecoration , enums . TextDecoration . underline , "TextDecoration" ) ;
You can’t perform that action at this time.
0 commit comments