diff --git a/CrossPlatformModules.csproj b/CrossPlatformModules.csproj
index 749a8f64c..aebafa373 100644
--- a/CrossPlatformModules.csproj
+++ b/CrossPlatformModules.csproj
@@ -150,6 +150,7 @@
+
animation.d.ts
@@ -939,6 +940,7 @@
+
@@ -1932,7 +1934,7 @@
False
-
+
\ No newline at end of file
diff --git a/apps/ui-tests-app/pages/html-view.ts b/apps/ui-tests-app/pages/html-view.ts
new file mode 100644
index 000000000..c0549a9f2
--- /dev/null
+++ b/apps/ui-tests-app/pages/html-view.ts
@@ -0,0 +1,5 @@
+export function pageLoaded(args) {
+ var page = args.object;
+
+ page.bindingContext = { html: "one
two" };
+}
\ No newline at end of file
diff --git a/apps/ui-tests-app/pages/html-view.xml b/apps/ui-tests-app/pages/html-view.xml
new file mode 100644
index 000000000..967eb5b16
--- /dev/null
+++ b/apps/ui-tests-app/pages/html-view.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/ui/html-view/html-view.ios.ts b/ui/html-view/html-view.ios.ts
index b1ede80ef..79001ff2d 100644
--- a/ui/html-view/html-view.ios.ts
+++ b/ui/html-view/html-view.ios.ts
@@ -34,6 +34,7 @@ export class HtmlView extends common.HtmlView {
this._ios = new UILabel();
this._ios.userInteractionEnabled = true;
+ this._ios.numberOfLines = 0;
}
get ios(): UILabel {