Skip to content

Commit

Permalink
Async Cookies API: First layout tests.
Browse files Browse the repository at this point in the history
R=pwnall@chromium.org

Bug: 602752
Bug: 729800
Change-Id: I3f6ff95ab82e7c00f9dfff1b612aa2be9761c91f
Reviewed-on: https://chromium-review.googlesource.com/594890
Commit-Queue: Benjamin Wiley Sittler <bsittler@chromium.org>
Reviewed-by: Victor Costan <pwnall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#514961}
  • Loading branch information
Benjamin C. Wiley Sittler authored and chromium-wpt-export-bot committed Nov 8, 2017
1 parent 96befe1 commit cd3a926
Show file tree
Hide file tree
Showing 49 changed files with 2,128 additions and 0 deletions.
14 changes: 14 additions & 0 deletions async_cookies/cookie_store_tests.tentative.html
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>
14 changes: 14 additions & 0 deletions async_cookies/cookie_store_tests.tentative.https.html
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>
14 changes: 14 additions & 0 deletions async_cookies/cookie_store_tests_static.tentative.html
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 async_cookies/cookie_store_tests_static.tentative.https.html
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>
14 changes: 14 additions & 0 deletions async_cookies/delete_cookies.tentative.html
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: delete cookies</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: 'testDeleteCookies'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/delete_cookies.tentative.https.html
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: delete cookies (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: 'testDeleteCookies'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/delete_cookies_static.tentative.html
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: delete cookies (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: 'testDeleteCookies'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/delete_cookies_static.tentative.https.html
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: delete cookies (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: 'testDeleteCookies'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/document_cookie.tentative.html
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>
14 changes: 14 additions & 0 deletions async_cookies/document_cookie.tentative.https.html
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>
14 changes: 14 additions & 0 deletions async_cookies/document_cookie_static.tentative.html
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>
14 changes: 14 additions & 0 deletions async_cookies/document_cookie_static.tentative.https.html
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 async_cookies/expiration.tentative.html
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: expiration</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: 'testExpiration'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/expiration.tentative.https.html
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: expiration (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: 'testExpiration'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/expiration_static.tentative.html
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: expiration (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: 'testExpiration'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/expiration_static.tentative.https.html
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: expiration (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: 'testExpiration'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/get_set_get_all.tentative.html
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: get, set, getAll</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: 'testGetSetGetAll'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/get_set_get_all.tentative.https.html
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: get, set, getAll (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: 'testGetSetGetAll'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/get_set_get_all_static.tentative.html
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: get, set, getAll (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: 'testGetSetGetAll'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/get_set_get_all_static.tentative.https.html
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: get, set, getAll (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: 'testGetSetGetAll'});
</script>
14 changes: 14 additions & 0 deletions async_cookies/http_cookie_and_set_cookie_headers.tentative.html
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>
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>
14 changes: 14 additions & 0 deletions async_cookies/meta_http_equiv_set_cookie.tentative.html
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 async_cookies/meta_http_equiv_set_cookie.tentative.https.html
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 async_cookies/meta_http_equiv_set_cookie_static.tentative.html
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>
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>
Loading

0 comments on commit cd3a926

Please sign in to comment.