summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues
diff options
context:
space:
mode:
authorRui Marinho <me@ruimarinho.net>2016-04-16 22:39:22 +0100
committerJason Smith <jason.smith@xamarin.com>2016-04-16 14:39:22 -0700
commit2223efdd4ff740a9335cd0a41f0c0e406568ed3d (patch)
tree0e04dd1ffaf4636b9ed04181d36bf5856c11acac /Xamarin.Forms.Controls.Issues
parentd9ed63f0add8345cf6ab1508b353dcbdacbcd97c (diff)
downloadxamarin-forms-2223efdd4ff740a9335cd0a41f0c0e406568ed3d.tar.gz
xamarin-forms-2223efdd4ff740a9335cd0a41f0c0e406568ed3d.tar.bz2
xamarin-forms-2223efdd4ff740a9335cd0a41f0c0e406568ed3d.zip
[iOS] Restore VisualElementTracker on WebViewRenderer (#99)
Diffstat (limited to 'Xamarin.Forms.Controls.Issues')
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39963.cs56
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems1
2 files changed, 57 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39963.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39963.cs
new file mode 100644
index 00000000..8549e210
--- /dev/null
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39963.cs
@@ -0,0 +1,56 @@
+using System;
+
+using Xamarin.Forms.CustomAttributes;
+
+#if UITEST
+using Xamarin.UITest;
+using NUnit.Framework;
+#endif
+
+namespace Xamarin.Forms.Controls
+{
+ [Preserve(AllMembers = true)]
+ [Issue(IssueTracker.Bugzilla, 39963, "iOS WebView has wrong scrolling size when loading local html content with images")]
+ public class Bugzilla39963 : TestContentPage // or TestMasterDetailPage, etc ...
+ {
+ protected override void Init()
+ {
+
+ var notWorkingHtml = @"<html><body>
+ <p><img src='test.jpg' /></p>
+ <p>After starting (not re-entering!) the app in landscape, scroll down to see a black area which is not supposed to be there.</p>
+ <p>After starting (not re-entering!) the app in portrait, scroll to the right to see a black area which is not supposed to be there.</p>
+ <p>This only happends when a local image is loaded.</p>
+ </body></html>";
+
+ var workingHtml = @"<html><body>
+ <p></p>
+ <p>Without local image, everything works fine.</p>
+ </body></html>";
+
+ // Initialize ui here instead of ctor
+ WebView webView = new WebView {
+ //Source = new UrlWebViewSource {
+ // Url = "https://blog.xamarin.com/",
+ //},
+ Source = new HtmlWebViewSource() {
+ Html = notWorkingHtml
+ },
+ VerticalOptions = LayoutOptions.FillAndExpand,
+ HorizontalOptions = LayoutOptions.FillAndExpand
+ };
+
+ Content = webView;
+ }
+
+#if UITEST
+ [Test]
+ public void Bugzilla39963Test()
+ {
+ RunningApp.Screenshot("I am at Bugzilla39963");
+ RunningApp.SwipeRightToLeft();
+ RunningApp.Screenshot("Do we see a black bar");
+ }
+#endif
+ }
+}
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems
index 6a1e0b93..5eff8aef 100644
--- a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems
@@ -399,6 +399,7 @@
<Compile Include="$(MSBuildThisFileDirectory)Bugzilla39378.xaml.cs">
<DependentUpon>Bugzilla39378.xaml</DependentUpon>
</Compile>
+ <Compile Include="$(MSBuildThisFileDirectory)Bugzilla39963.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="$(MSBuildThisFileDirectory)Bugzilla22229.xaml">