File tree 3 files changed +22
-5
lines changed
Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls
3 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 19
19
using static Private . Infrastructure . TestServices ;
20
20
using System . Collections . Generic ;
21
21
using System . Drawing ;
22
+ using SamplesApp . UITests ;
22
23
using Uno . Disposables ;
23
24
using Uno . Extensions ;
24
25
using Point = Windows . Foundation . Point ;
@@ -610,6 +611,24 @@ public void When_Inlines_XamlRoot()
610
611
}
611
612
}
612
613
614
+ #if __WASM__
615
+ [ TestMethod ]
616
+ [ UnoWorkItem ( "https://github.com/unoplatform/uno/issues/19380" ) ]
617
+ public async Task When_Changing_Text_Through_Inlines ( )
618
+ {
619
+ var SUT = new TextBlock { Text = "Initial Text" } ;
620
+ await Uno . UI . RuntimeTests . Helpers . UITestHelper . Load ( SUT ) ;
621
+ var width = Uno . UI . Xaml . WindowManagerInterop . GetClientViewSize ( SUT . HtmlId ) . clientSize . Width ;
622
+
623
+ SUT . Inlines . Clear ( ) ;
624
+ SUT . Inlines . Add ( new Run { Text = "Updated Text" } ) ;
625
+
626
+ await Uno . UI . RuntimeTests . Helpers . UITestHelper . WaitForIdle ( ) ;
627
+
628
+ Uno . UI . Xaml . WindowManagerInterop . GetClientViewSize ( SUT . HtmlId ) . clientSize . Width . Should ( ) . BeApproximately ( width , precision : width * 0.4 ) ;
629
+ }
630
+ #endif
631
+
613
632
[ TestMethod ]
614
633
#if __MACOS__
615
634
[ Ignore ( "Currently fails on macOS, part of #9282 epic" ) ]
Original file line number Diff line number Diff line change @@ -118,6 +118,9 @@ public InlineCollection Inlines
118
118
if ( _inlines == null )
119
119
{
120
120
_inlines = new InlineCollection ( this ) ;
121
+ #if __WASM__
122
+ SetText ( string . Empty ) ; // To clean up the text that is set directly on the TextBlock's <p>
123
+ #endif
121
124
UpdateInlines ( Text ) ;
122
125
123
126
SetupInlines ( ) ;
Original file line number Diff line number Diff line change @@ -102,11 +102,6 @@ private void OnChildRemoved(UIElement child)
102
102
{
103
103
child . Shutdown ( ) ;
104
104
105
- if ( ! child . _isFrameworkElement )
106
- {
107
- return ;
108
- }
109
-
110
105
#if UNO_HAS_ENHANCED_LIFECYCLE
111
106
var leaveParams = new LeaveParams ( IsActiveInVisualTree ) ;
112
107
child . Leave ( leaveParams ) ;
You can’t perform that action at this time.
0 commit comments