1
0
Fork 0
firefox/testing/web-platform/tests/cookie-store/encoding.https.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

19 lines
667 B
JavaScript

// META: title=Cookie Store API: cookie encoding
// META: global=window,serviceworker
// META: script=resources/cookie-test-helpers.js
'use strict';
cookie_test(async t => {
await setCookieStringHttp('\uFEFFcookie=value; path=/');
const cookie = await cookieStore.get('\uFEFFcookie');
assert_equals(cookie.name, '\uFEFFcookie');
assert_equals(cookie.value, 'value');
}, 'BOM not stripped from name');
cookie_test(async t => {
await setCookieStringHttp('cookie=\uFEFFvalue; path=/');
const cookie = await cookieStore.get('cookie');
assert_equals(cookie.name, 'cookie');
assert_equals(cookie.value, '\uFEFFvalue');
}, 'BOM not stripped from value');