diff --git a/packages/base/test/pages/ThemeRoot.html b/packages/base/test/pages/ThemeRoot.html
index fa7bd73c144d..8680fa66898b 100644
--- a/packages/base/test/pages/ThemeRoot.html
+++ b/packages/base/test/pages/ThemeRoot.html
@@ -20,48 +20,61 @@
Without meta tag
- ❌ ?sap-ui-theme=sap_horizon@http://example2.com/themes/
+
?sap-ui-themeRoot=http://example2.com/themes/
http://example2.com/ — no meta tag present, blocked
- ❌ ?sap-ui-theme=sap_horizon@https://example.com/themes/
+
?sap-ui-themeRoot=https://example.com/themes/
https://example.com/ — no meta tag present, blocked
- ❌ ?sap-ui-theme=sap_horizon@http://example:9090.com/themes/
+
?sap-ui-themeRoot=http://example:9090.com/themes/
http://example:9090.com/ — no meta tag present, blocked
- ❌ ?sap-ui-theme=sap_horizon@http://example.com/themes/
+
?sap-ui-themeRoot=http://example.com/themes/
http://example.com/ — no meta tag present, blocked
- ❌ ?sap-ui-theme=sap_horizon@//example2.com/themes/
+
?sap-ui-themeRoot=//example2.com/themes/
//example2.com/ — inherits current page protocol (e.g. http://example2.com/) — no meta tag present, blocked
- ❌ ?sap-ui-theme=sap_horizon@//example:9090.com/themes/
+
?sap-ui-themeRoot=//example:9090.com/themes/
//example:9090.com/ — inherits current page protocol (e.g. http://example:9090.com/) — no meta tag present, blocked
- ❌ ?sap-ui-theme=sap_horizon@//example.com/themes/
+
?sap-ui-themeRoot=//example.com/themes/
//example.com/ — inherits current page protocol (e.g. http://example.com/) — no meta tag present, blocked
- - ✅ ?sap-ui-theme=sap_horizon@/themes/
/themes/
+ - ✅ ?sap-ui-theme=sap_horizon@/themes/
+
?sap-ui-themeRoot=/themes/
+
/themes/
(resolves to the current page's origin, e.g. http://localhost:8080/themes/)
Same-origin — expected link element
- - ✅ ?sap-ui-theme=sap_horizon@./themes/
./themes/
+ - ✅ ?sap-ui-theme=sap_horizon@./themes/
+
?sap-ui-themeRoot=./themes/
+
./themes/
(resolves relative to the current page's URL, e.g. http://localhost:8080/test/pages/themes/)
Same-origin — expected link element
- - ✅ ?sap-ui-theme=sap_horizon@../themes/
../themes/
+ - ✅ ?sap-ui-theme=sap_horizon@../themes/
+
?sap-ui-themeRoot=../themes/
+
../themes/
(resolves relative to the current page's URL, e.g. http://localhost:8080/test/themes/)
Same-origin — expected link element
diff --git a/packages/base/test/pages/ThemeRoot2.html b/packages/base/test/pages/ThemeRoot2.html
index 4d37344c5116..282e38b393de 100644
--- a/packages/base/test/pages/ThemeRoot2.html
+++ b/packages/base/test/pages/ThemeRoot2.html
@@ -22,48 +22,61 @@ With meta tag