diff --git a/packages/main/test/pages/Input.html b/packages/main/test/pages/Input.html
index 4e18da99c108..46219d4562c2 100644
--- a/packages/main/test/pages/Input.html
+++ b/packages/main/test/pages/Input.html
@@ -22,6 +22,9 @@ Input with suggestions: type 'a'
Event [selectionChange] :: N/A
+
Input with autofocus
+
+
Input in Cozy
diff --git a/packages/main/test/pages/Popover.html b/packages/main/test/pages/Popover.html
index dbf1b8fec06c..d87c066cdcd0 100644
--- a/packages/main/test/pages/Popover.html
+++ b/packages/main/test/pages/Popover.html
@@ -96,6 +96,13 @@
Close with Attribute
+ Open with Attribute
+
+ Close with Method
+ Close with Attribute
+
+
+
@@ -666,6 +673,9 @@ Popover in ShadowRoot, Opener set as ID in window.document
btnOpenWithAttr.addEventListener("click", function () {
popoverAttr.setAttribute("open", "");
});
+ btnOpenWithAttr2.addEventListener("click", function () {
+ popoverAttr2.setAttribute("open", "");
+ });
btnCloseWithMethod.addEventListener("click", function () {
popoverAttr.open = false;