mirror of
https://github.com/servo/servo.git
synced 2025-07-01 12:33:40 +01:00
21 lines
542 B
Text
21 lines
542 B
Text
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<title>Debug single test</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="cookie-http-state-template.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="log"></div>
|
|
<script>
|
|
setup({ explicit_timeout: true });
|
|
|
|
promise_test(createCookieTest("%s"), "DEBUG", { timeout: 3000 });
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|