diff --git a/src/Controls/tests/TestCases.HostApp/Issues/Issue30515.cs b/src/Controls/tests/TestCases.HostApp/Issues/Issue30515.cs
new file mode 100644
index 000000000000..1bbf8a89421e
--- /dev/null
+++ b/src/Controls/tests/TestCases.HostApp/Issues/Issue30515.cs
@@ -0,0 +1,135 @@
+namespace Maui.Controls.Sample.Issues;
+
+[Issue(IssueTracker.Github, 30515, "[iOS] WebView.Reload() with HtmlWebViewSource returns WebNavigationResult.Failure in Navigated event", PlatformAffected.iOS)]
+public class Issue30515 : ContentPage
+{
+ WebView webView;
+ Label statusTextLabel;
+ Label statusValueLabel;
+
+ public Issue30515()
+ {
+ Title = "Issue 30515";
+
+ // Create the navigation status labels - split into static text and dynamic value
+ statusTextLabel = new Label
+ {
+ Text = "Status:",
+ FontSize = 14,
+ TextColor = Colors.Gray,
+ VerticalOptions = LayoutOptions.Center
+ };
+
+ statusValueLabel = new Label
+ {
+ Text = "Ready",
+ AutomationId = "NavigationStatusLabel",
+ FontSize = 14,
+ TextColor = Colors.Blue,
+ VerticalOptions = LayoutOptions.Center
+ };
+
+ // Create a horizontal stack for the status display
+ var statusContainer = new StackLayout
+ {
+ Orientation = StackOrientation.Horizontal,
+ Spacing = 5,
+ HorizontalOptions = LayoutOptions.Center,
+ Children = { statusTextLabel, statusValueLabel }
+ };
+
+ // Create the WebView
+ webView = new WebView
+ {
+ HeightRequest = 300,
+ WidthRequest = 400,
+ Source = new HtmlWebViewSource
+ {
+ Html = @"
+
+
+ HTML WebView Source
+
+
+
WebView Feature Matrix
+
This page demonstrates various capabilities of the .NET MAUI WebView control, such as:
+
+
Rendering HTML content
+
Executing JavaScript
+
Cookie management
+
Back/Forward navigation
+
+
Test Content
+
+ This is a longer body paragraph to help test the EvaluateJavaScript functionality
+ and how it extracts body text. You can use this text to verify substring operations and test scrolling
+ or formatting in the WebView.
+
+
+
+ Try interacting with navigation buttons, loading multiple pages, or checking cookie behavior.
+