From 05211a31d7b6104d1efd5ca78c7680dad9ab48e7 Mon Sep 17 00:00:00 2001 From: Marco Castelluccio Date: Fri, 4 Oct 2019 00:49:44 +0000 Subject: [PATCH] Bug 1527149 [wpt PR 15328] - HTML: noopener keyword is tokenized, a=testonly Automatic update from web-platform-tests HTML: noopener keyword is tokenized See https://github.com/whatwg/html/pull/4079. -- wpt-commits: 6d9e199e99ce76bafb4d31a58641e5a2591c9587 wpt-pr: 15328 UltraBlame original commit: 957e02354f5eb4a8873a8ebb6fe3d2023ec1f025 --- .../browsers/the-window-object/window-open-noopener.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 5256053753747..cdda6335861eb 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",