mirror of
https://github.com/servo/servo.git
synced 2025-07-11 17:33:47 +01:00
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<title>Tests cookie setting comma functionality</title>
|
|
<meta name=help href="https://tools.ietf.org/html/rfc6265#page-8">
|
|
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="resources/cookie-http-state-template.js"></script>
|
|
</head>
|
|
<body style="background:#EEE">
|
|
<h3>Log</h3>
|
|
<div id="log" style="height:50px; overflow-y:scroll; background: #FFF">
|
|
</div>
|
|
<h3>IFrames</h3>
|
|
<div id="iframes" style="height:170px; overflow-y:scroll; background: #FFF">
|
|
</div>
|
|
<h3>Test Results</h3>
|
|
<script>
|
|
setup({ explicit_timeout: true });
|
|
|
|
const TEST_CASES = [
|
|
{file: "comma0001", name: "comma0001"},
|
|
{file: "comma0002", name: "comma0002"},
|
|
{file: "comma0003", name: "comma0003"},
|
|
{file: "comma0004", name: "comma0004"},
|
|
{file: "comma0005", name: "comma0005"},
|
|
{file: "comma0006", name: "comma0006"},
|
|
{file: "comma0007", name: "comma0007"},
|
|
];
|
|
|
|
for (const i in TEST_CASES) {
|
|
const t = TEST_CASES[i];
|
|
promise_test(createCookieTest(t.file),
|
|
t.file + " - " + t.name);
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|