diff --git a/src/Controls/tests/TestCases.Android.Tests/snapshots/android/MoreBottomSheetUsesM3ThemedColors.png b/src/Controls/tests/TestCases.Android.Tests/snapshots/android/MoreBottomSheetUsesM3ThemedColors.png new file mode 100644 index 000000000000..f9be10a7cdb3 Binary files /dev/null and b/src/Controls/tests/TestCases.Android.Tests/snapshots/android/MoreBottomSheetUsesM3ThemedColors.png differ diff --git a/src/Controls/tests/TestCases.Android.Tests/snapshots/android/TopTabUnselectedTextVisibleWhenSwitchingTabs.png b/src/Controls/tests/TestCases.Android.Tests/snapshots/android/TopTabUnselectedTextVisibleWhenSwitchingTabs.png new file mode 100644 index 000000000000..4ee276226f0b Binary files /dev/null and b/src/Controls/tests/TestCases.Android.Tests/snapshots/android/TopTabUnselectedTextVisibleWhenSwitchingTabs.png differ diff --git a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/BoxView_RTL_AfterButton.png b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/BoxView_RTL_AfterButton.png new file mode 100644 index 000000000000..0e2a63055936 Binary files /dev/null and b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/BoxView_RTL_AfterButton.png differ diff --git a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/ClippedStackLayoutInsideBorderWithBackgroundRendersCorrectly.png b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/ClippedStackLayoutInsideBorderWithBackgroundRendersCorrectly.png new file mode 100644 index 000000000000..f7def6b9ee07 Binary files /dev/null and b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/ClippedStackLayoutInsideBorderWithBackgroundRendersCorrectly.png differ diff --git a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/ItemImageSourceShouldBeVisible.png b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/ItemImageSourceShouldBeVisible.png index 99e6ba4c430e..023f757c1bc5 100644 Binary files a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/ItemImageSourceShouldBeVisible.png and b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/ItemImageSourceShouldBeVisible.png differ diff --git a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/VerifyImageWithShadow.png b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/VerifyImageWithShadow.png index 278d3c0b9bb5..400c299f2a5b 100644 Binary files a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/VerifyImageWithShadow.png and b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/VerifyImageWithShadow.png differ diff --git a/src/Controls/tests/TestCases.Shared.Tests/Tests/FeatureMatrix/CarouselViewFeatureTests.cs b/src/Controls/tests/TestCases.Shared.Tests/Tests/FeatureMatrix/CarouselViewFeatureTests.cs index 32339c1bd6f1..90388330dd3b 100644 --- a/src/Controls/tests/TestCases.Shared.Tests/Tests/FeatureMatrix/CarouselViewFeatureTests.cs +++ b/src/Controls/tests/TestCases.Shared.Tests/Tests/FeatureMatrix/CarouselViewFeatureTests.cs @@ -128,7 +128,7 @@ public void VerifyCarouselViewWithKeepItemInViewAndPreviousPosition() App.WaitForElement(AddButton); App.Tap(AddButton); App.WaitForElement("Item 7"); - Assert.That(App.WaitForElement(PreviousPositionLabel).GetText(), Is.EqualTo("1")); + Assert.That(App.WaitForElement(PreviousPositionLabel).GetText(), Is.EqualTo("No previous position")); } #endif #endif @@ -791,7 +791,7 @@ public void VerifyCarouselViewWithPreviousPosition() App.WaitForElement(AddButton); App.Tap(AddButton); App.WaitForElement("Item 6"); - Assert.That(App.WaitForElement(PreviousPositionLabel).GetText(), Is.EqualTo("1")); + Assert.That(App.WaitForElement(PreviousPositionLabel).GetText(), Is.EqualTo("No previous position")); } #endif #endif diff --git a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue34402.cs b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue34402.cs index ebb593c3f9b8..a2e6d6b44bd7 100644 --- a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue34402.cs +++ b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue34402.cs @@ -14,22 +14,34 @@ public Issue34402(TestDevice device) : base(device) { } [Category(UITestCategories.BoxView)] public void BoxViewFlowDirectionShouldMirrorOnRTL() { + Exception? exception = null; App.WaitForElement("Issue34402Label"); - VerifyScreenshot("BoxView_LTR_Initial"); + VerifyScreenshotOrSetException(ref exception, "BoxView_LTR_Initial"); App.Tap("BoxViewRtlButton"); - VerifyScreenshot("BoxView_RTL_AfterButton"); + VerifyScreenshotOrSetException(ref exception, "BoxView_RTL_AfterButton"); + + if (exception != null) + { + throw exception; + } } [Test] [Category(UITestCategories.GraphicsView)] public void GraphicsViewFlowDirectionShouldMirrorOnRTL() { + Exception? exception = null; App.WaitForElement("Issue34402GraphicsViewLabel"); - VerifyScreenshot("GraphicsView_LTR_Initial"); + VerifyScreenshotOrSetException(ref exception, "GraphicsView_LTR_Initial"); App.Tap("GraphicsViewRtlButton"); - VerifyScreenshot("GraphicsView_RTL_AfterButton"); + VerifyScreenshotOrSetException(ref exception, "GraphicsView_RTL_AfterButton"); + + if (exception != null) + { + throw exception; + } } } } diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/BoxView_LTR_Initial.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/BoxView_LTR_Initial.png new file mode 100644 index 000000000000..9cbd53a8ad0c Binary files /dev/null and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/BoxView_LTR_Initial.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/ClippedStackLayoutInsideBorderWithBackgroundRendersCorrectly.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/ClippedStackLayoutInsideBorderWithBackgroundRendersCorrectly.png index 6d0d0cc1b50e..96977086137d 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/ClippedStackLayoutInsideBorderWithBackgroundRendersCorrectly.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/ClippedStackLayoutInsideBorderWithBackgroundRendersCorrectly.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_CheckBox_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_CheckBox_VerifyVisualState.png index 2c90634e9351..27bdd72ad9a2 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_CheckBox_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_CheckBox_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_DatePicker_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_DatePicker_VerifyVisualState.png index 6242d30ad143..e769bcde36b2 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_DatePicker_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_DatePicker_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_EditorAndPlaceholderColor_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_EditorAndPlaceholderColor_VerifyVisualState.png index bd07e0e85baa..db015a57ce60 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_EditorAndPlaceholderColor_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_EditorAndPlaceholderColor_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Editor_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Editor_VerifyVisualState.png index 991503ec9951..8a1c5952372a 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Editor_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Editor_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_EntryAndPlaceholderColor_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_EntryAndPlaceholderColor_VerifyVisualState.png index 6f1e17f18c80..8d3fc02bc10a 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_EntryAndPlaceholderColor_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_EntryAndPlaceholderColor_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Picker_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Picker_VerifyVisualState.png index a4e6d8368d8f..1f623ad9f272 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Picker_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Picker_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_RadioButton_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_RadioButton_VerifyVisualState.png index 88745be6d1bc..5afb2ddf8865 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_RadioButton_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_RadioButton_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_SearchBarAndPlaceholderColor_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_SearchBarAndPlaceholderColor_VerifyVisualState.png index 77c499d62778..e2707e36d77e 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_SearchBarAndPlaceholderColor_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_SearchBarAndPlaceholderColor_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_SearchBar_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_SearchBar_VerifyVisualState.png index f2fa9ff5b6fa..5badd169fb4a 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_SearchBar_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_SearchBar_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Slider_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Slider_VerifyVisualState.png index 8abc11304ffc..0ae26bf84e1f 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Slider_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Slider_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Switch_VerifyVisualState.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Switch_VerifyVisualState.png index bb48e1dc1951..b43e0985fe5f 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Switch_VerifyVisualState.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/DarkTheme_Switch_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/GraphicsView_LTR_Initial.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/GraphicsView_LTR_Initial.png new file mode 100644 index 000000000000..940dc5be4353 Binary files /dev/null and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/GraphicsView_LTR_Initial.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/Issue33783_SwitchThumbColor_DarkTheme.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/Issue33783_SwitchThumbColor_DarkTheme.png index f72b69a34e23..cb3ade50ba81 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/Issue33783_SwitchThumbColor_DarkTheme.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/Issue33783_SwitchThumbColor_DarkTheme.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/Issue33783_SwitchThumbColor_LightTheme.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/Issue33783_SwitchThumbColor_LightTheme.png index 88b071a219ad..ecf9ec4647e9 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/Issue33783_SwitchThumbColor_LightTheme.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/Issue33783_SwitchThumbColor_LightTheme.png differ diff --git a/src/Controls/tests/TestCases.WinUI.Tests/VerifyOriginalTabbedPageDoesNotHaveMultipleTabsSelected.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/VerifyOriginalTabbedPageDoesNotHaveMultipleTabsSelected.png similarity index 100% rename from src/Controls/tests/TestCases.WinUI.Tests/VerifyOriginalTabbedPageDoesNotHaveMultipleTabsSelected.png rename to src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/VerifyOriginalTabbedPageDoesNotHaveMultipleTabsSelected.png diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_CheckBox_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_CheckBox_VerifyVisualState.png index 6bf58506edb0..dbd437819eeb 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_CheckBox_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_CheckBox_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_DatePicker_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_DatePicker_VerifyVisualState.png index a471a7afc047..8fdbbaa14f44 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_DatePicker_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_DatePicker_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_EditorAndPlaceholderColor_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_EditorAndPlaceholderColor_VerifyVisualState.png index 95ef66529773..d3aadf20d571 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_EditorAndPlaceholderColor_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_EditorAndPlaceholderColor_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Editor_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Editor_VerifyVisualState.png index 9d2a955376ba..43f57111a2cc 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Editor_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Editor_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_EntryAndPlaceholderColor_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_EntryAndPlaceholderColor_VerifyVisualState.png index d781e810baad..42af0ff32bcb 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_EntryAndPlaceholderColor_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_EntryAndPlaceholderColor_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_RadioButton_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_RadioButton_VerifyVisualState.png index 19a42835bdf3..ae37e3dfe890 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_RadioButton_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_RadioButton_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_SearchBarAndPlaceholderColor_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_SearchBarAndPlaceholderColor_VerifyVisualState.png index 161a851c516e..6d30d68e4989 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_SearchBarAndPlaceholderColor_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_SearchBarAndPlaceholderColor_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_SearchBar_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_SearchBar_VerifyVisualState.png index 7e64c5dde6a7..903a3a572949 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_SearchBar_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_SearchBar_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Slider_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Slider_VerifyVisualState.png index feccf9b0f856..50e29435c8c9 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Slider_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Slider_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Switch_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Switch_VerifyVisualState.png index bce287a315a2..9770ff6b451b 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Switch_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/DarkTheme_Switch_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/FontImageSourceShouldHonorColor.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/FontImageSourceShouldHonorColor.png index ea6bc43557b1..11e5b46ab11d 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/FontImageSourceShouldHonorColor.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/FontImageSourceShouldHonorColor.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue13801VerifyPathMargin.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue13801VerifyPathMargin.png new file mode 100644 index 000000000000..fe648dd7b4c6 Binary files /dev/null and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue13801VerifyPathMargin.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue33783_SwitchThumbColor_DarkTheme.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue33783_SwitchThumbColor_DarkTheme.png index 54a4bd0ba22e..0019b50cfd98 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue33783_SwitchThumbColor_DarkTheme.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue33783_SwitchThumbColor_DarkTheme.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue33783_SwitchThumbColor_LightTheme.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue33783_SwitchThumbColor_LightTheme.png index 7919e36ccf31..d9afac48ab75 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue33783_SwitchThumbColor_LightTheme.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/Issue33783_SwitchThumbColor_LightTheme.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/ItemImageSourceShouldBeVisible.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/ItemImageSourceShouldBeVisible.png index 0c77eb2e28aa..26bb63ef6368 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/ItemImageSourceShouldBeVisible.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/ItemImageSourceShouldBeVisible.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_CheckBox_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_CheckBox_VerifyVisualState.png index e2d0dcbae0c8..c3ab878c8ad4 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_CheckBox_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_CheckBox_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_DatePicker_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_DatePicker_VerifyVisualState.png index a0e2c660c059..1506102431cd 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_DatePicker_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_DatePicker_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Editor_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Editor_VerifyVisualState.png index 7e3423af8274..44ffc9b5df55 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Editor_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Editor_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_RadioButton_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_RadioButton_VerifyVisualState.png index 3b16c120a425..86c2e03a931c 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_RadioButton_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_RadioButton_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_SearchBar_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_SearchBar_VerifyVisualState.png index 99db1bf605db..a025f1ed7b77 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_SearchBar_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_SearchBar_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Slider_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Slider_VerifyVisualState.png index b59c318ce6ce..7ab66600baf2 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Slider_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Slider_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Switch_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Switch_VerifyVisualState.png index 87757b32d8a1..72f3587475b5 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Switch_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_Switch_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_VerifyVisualState.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_VerifyVisualState.png index dafd907cd7a1..da5d7c854048 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_VerifyVisualState.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/LightTheme_VerifyVisualState.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/TitleUpdatesAfterShowingNonFlyoutPage.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/TitleUpdatesAfterShowingNonFlyoutPage.png index 1465b436b84f..a1c4692103d7 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/TitleUpdatesAfterShowingNonFlyoutPage.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/TitleUpdatesAfterShowingNonFlyoutPage.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyImageWithShadow.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyImageWithShadow.png index c625dfa0ccae..35fd6b993601 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyImageWithShadow.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyImageWithShadow.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyOriginalTabbedPageDoesNotHaveMultipleTabsSelected.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyOriginalTabbedPageDoesNotHaveMultipleTabsSelected.png new file mode 100644 index 000000000000..71343a9279c9 Binary files /dev/null and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyOriginalTabbedPageDoesNotHaveMultipleTabsSelected.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyTabbedPageDoesNotHaveMultipleTabsSelected.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyTabbedPageDoesNotHaveMultipleTabsSelected.png new file mode 100644 index 000000000000..a146d0a2a773 Binary files /dev/null and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios-26/VerifyTabbedPageDoesNotHaveMultipleTabsSelected.png differ