Skip to content

Commit d02f991

Browse files
authored
Merge pull request #19390 from ramezgerges/textblock_wasm_inlines_crash
fix(TextBlock): clear old text when setting text through inlines
2 parents 83fd216 + 3fba555 commit d02f991

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls/Given_TextBlock.cs

+19
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
using static Private.Infrastructure.TestServices;
2020
using System.Collections.Generic;
2121
using System.Drawing;
22+
using SamplesApp.UITests;
2223
using Uno.Disposables;
2324
using Uno.Extensions;
2425
using Point = Windows.Foundation.Point;
@@ -610,6 +611,24 @@ public void When_Inlines_XamlRoot()
610611
}
611612
}
612613

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+
613632
[TestMethod]
614633
#if __MACOS__
615634
[Ignore("Currently fails on macOS, part of #9282 epic")]

src/Uno.UI/UI/Xaml/Controls/TextBlock/TextBlock.cs

+3
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ public InlineCollection Inlines
118118
if (_inlines == null)
119119
{
120120
_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
121124
UpdateInlines(Text);
122125

123126
SetupInlines();

src/Uno.UI/UI/Xaml/UIElement.crossruntime.cs

-5
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,6 @@ private void OnChildRemoved(UIElement child)
102102
{
103103
child.Shutdown();
104104

105-
if (!child._isFrameworkElement)
106-
{
107-
return;
108-
}
109-
110105
#if UNO_HAS_ENHANCED_LIFECYCLE
111106
var leaveParams = new LeaveParams(IsActiveInVisualTree);
112107
child.Leave(leaveParams);

0 commit comments

Comments
 (0)