diff --git a/testing/web-platform/tests/html/browsers/the-window-object/window-open-noopener.html b/testing/web-platform/tests/html/browsers/the-window-object/window-open-noopener.html
index 525605375374..cdda6335861e 100644
--- a/testing/web-platform/tests/html/browsers/the-window-object/window-open-noopener.html
+++ b/testing/web-platform/tests/html/browsers/the-window-object/window-open-noopener.html
@@ -15,13 +15,13 @@
{ testDescription: "window.open() with 'noopener' should not reuse existing target",
secondWindowFeatureString: "noopener",
shouldReuse: false },
- { testDescription: "noopener needs to be present as a token on its own",
+ { testDescription: "noopener=1 means the same as noopener",
secondWindowFeatureString: "noopener=1",
- shouldReuse: true },
- { testDescription: "noopener needs to be present as a token on its own again",
+ shouldReuse: false },
+ { testDescription: "noopener=0 means lack of noopener",
secondWindowFeatureString: "noopener=0",
shouldReuse: true },
- { testDescription: "noopener needs to be present as a token on its own yet again",
+ { testDescription: "noopener needs to be present as a token on its own",
secondWindowFeatureString: "make me noopener",
shouldReuse: true },
{ testDescription: "Trailing noopener should work",