diff --git a/CrossPlatformModules.csproj b/CrossPlatformModules.csproj
index 2770e8f64..d160c831f 100644
--- a/CrossPlatformModules.csproj
+++ b/CrossPlatformModules.csproj
@@ -238,6 +238,7 @@
color.xml
+
html-view.xml
@@ -2092,7 +2093,7 @@
False
-
+
\ No newline at end of file
diff --git a/apps/ui-tests-app/css/text-decoration.ts b/apps/ui-tests-app/css/text-decoration.ts
new file mode 100644
index 000000000..eceb2f30e
--- /dev/null
+++ b/apps/ui-tests-app/css/text-decoration.ts
@@ -0,0 +1,17 @@
+var obj;
+
+export function loaded(args) {
+ obj = args.object;
+}
+
+export function butonTap(args) {
+ if (obj.style.textDecoration === "underline") {
+ obj.style.textDecoration = "line-through";
+ } else if (obj.style.textDecoration === "line-through") {
+ obj.style.textDecoration = "line-through underline";
+ } else if (obj.style.textDecoration === "line-through underline") {
+ obj.style.textDecoration = "none";
+ } else if (obj.style.textDecoration === "none") {
+ obj.style.textDecoration = "underline";
+ }
+}
\ No newline at end of file
diff --git a/apps/ui-tests-app/css/text-decoration.xml b/apps/ui-tests-app/css/text-decoration.xml
index 4649b52cc..f1a99cadb 100644
--- a/apps/ui-tests-app/css/text-decoration.xml
+++ b/apps/ui-tests-app/css/text-decoration.xml
@@ -1,6 +1,9 @@
-
+
+
+
+