-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Async Cookies API: First layout tests.
R=pwnall@chromium.org Bug: https://crbug.com/602752 Bug: https://crbug.com/729800 Change-Id: I3f6ff95ab82e7c00f9dfff1b612aa2be9761c91f
- Loading branch information
1 parent
41f06d4
commit 068380e
Showing
33 changed files
with
1,892 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Basic tests for cookieStore</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite(); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Basic tests for cookieStore (HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite(); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Basic tests for cookieStore (Static)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite(); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/cookie_store_tests_static.tentative.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Basic tests for cookieStore (Static; HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite(); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: document.cookie</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testDocumentCookie'}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: document.cookie (HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testDocumentCookie'}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: document.cookie (Static)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testDocumentCookie'}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: document.cookie (Static; HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testDocumentCookie'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/http_cookie_and_set_cookie_headers.tentative.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: HTTP Cookie and Set-Cookie headers</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testHttpCookieAndSetCookieHeaders'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/http_cookie_and_set_cookie_headers.tentative.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: HTTP Cookie and Set-Cookie headers (HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testHttpCookieAndSetCookieHeaders'}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: <title>Async Cookies: document.cookie</title>lt;Meta Http-Equiv="Set-Cookie" ... <title>Async Cookies: document.cookie</title>gt;</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testMetaHttpEquivSetCookie'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/meta_http_equiv_set_cookie.tentative.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: <title>Async Cookies: document.cookie</title>lt;Meta Http-Equiv="Set-Cookie" ... <title>Async Cookies: document.cookie</title>gt; (HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testMetaHttpEquivSetCookie'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/meta_http_equiv_set_cookie_static.tentative.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: <title>Async Cookies: document.cookie</title>lt;Meta Http-Equiv="Set-Cookie" ... <title>Async Cookies: document.cookie</title>gt; (Static)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testMetaHttpEquivSetCookie'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/meta_http_equiv_set_cookie_static.tentative.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: <title>Async Cookies: document.cookie</title>lt;Meta Http-Equiv="Set-Cookie" ... <title>Async Cookies: document.cookie</title>gt; (Static; HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testMetaHttpEquivSetCookie'}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name and No Value</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameAndNoValue'}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name and No Value (HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameAndNoValue'}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name and No Value (Static)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameAndNoValue'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/no_name_and_no_value_static.tentative.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name and No Value (Static; HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameAndNoValue'}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name, '=' in Value</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameEqualsInValue'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/no_name_equals_in_value.tentative.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name, '=' in Value (HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameEqualsInValue'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/no_name_equals_in_value_static.tentative.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name, '=' in Value (Static)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameEqualsInValue'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/no_name_equals_in_value_static.tentative.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name, '=' in Value (Static; HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameEqualsInValue'}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name, Multiple Values</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameMultipleValues'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/no_name_multiple_values.tentative.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name, Multiple Values (HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameMultipleValues'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/no_name_multiple_values_static.tentative.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name, Multiple Values (Static)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameMultipleValues'}); | ||
</script> |
14 changes: 14 additions & 0 deletions
14
async_cookies/no_name_multiple_values_static.tentative.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Async Cookies: Test No Name, Multiple Values (Static; HTTPS)</title> | ||
<meta name="help" href="https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/testharness-helpers.js"></script> | ||
<script src="resources/cookie-store-tests.js"></script> | ||
<script> | ||
'use strict'; | ||
|
||
suite({testName: 'testNoNameMultipleValues'}); | ||
</script> |
Oops, something went wrong.