diff --git a/testing/web-platform/tests/css/css-shadow-parts/pseudo-classes-after-part.html b/testing/web-platform/tests/css/css-shadow-parts/pseudo-classes-after-part.html
index 60292d27a71c2..873df77139876 100644
--- a/testing/web-platform/tests/css/css-shadow-parts/pseudo-classes-after-part.html
+++ b/testing/web-platform/tests/css/css-shadow-parts/pseudo-classes-after-part.html
@@ -15,7 +15,6 @@
test_valid_selector("::part(mypart):any-link");
test_valid_selector("::part(mypart):autofill");
test_valid_selector("::part(mypart):checked");
-test_valid_selector("::part(mypart):closed");
test_valid_selector("::part(mypart):default");
test_valid_selector("::part(mypart):defined");
test_valid_selector("::part(mypart):dir(ltr)");
diff --git a/testing/web-platform/tests/css/selectors/open-closed-pseudo.html b/testing/web-platform/tests/css/selectors/open-pseudo.html
similarity index 63%
rename from testing/web-platform/tests/css/selectors/open-closed-pseudo.html
rename to testing/web-platform/tests/css/selectors/open-pseudo.html
index 9301fd2f41624..0f3b9f3c37966 100644
--- a/testing/web-platform/tests/css/selectors/open-closed-pseudo.html
+++ b/testing/web-platform/tests/css/selectors/open-pseudo.html
@@ -17,53 +17,39 @@
diff --git a/testing/web-platform/tests/html/semantics/forms/the-select-element/select-pseudo-light-dismiss-invalidation.tentative.html b/testing/web-platform/tests/html/semantics/forms/the-select-element/select-pseudo-light-dismiss-invalidation.tentative.html
index c9631d92e1258..749fd8cf27580 100644
--- a/testing/web-platform/tests/html/semantics/forms/the-select-element/select-pseudo-light-dismiss-invalidation.tentative.html
+++ b/testing/web-platform/tests/html/semantics/forms/the-select-element/select-pseudo-light-dismiss-invalidation.tentative.html
@@ -14,7 +14,7 @@
select {
background-color: rgb(0, 0, 255);
}
-select:closed {
+select:not(:open) {
background-color: rgb(0, 255, 0);
}
select:open {
@@ -29,7 +29,7 @@