-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
68 lines (65 loc) · 3.47 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cookies specification compatibility in modern browsers</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css"
integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<link rel="stylesheet" href="assets/style.css">
<script src="https://code.jquery.com/jquery-2.2.1.min.js"></script>
<script src="assets/jquery.stickytableheaders.min.js"></script>
<script src="assets/index.js"></script>
</head>
<body>
<div class="description">
<h1>Cookies specification compliance issues in modern browsers</h1>
<p>
<a class="github-button"
href="https://github.com/inikulin/cookie-compat"
data-count-href="/inikulin/cookie-compat/stargazers"
data-count-api="/repos/inikulin/cookie-compat#stargazers_count"
data-count-aria-label="# stargazers on GitHub"
aria-label="Star inikulin/cookie-compat on GitHub">Star</a>
</p>
<p>
research by Ivan Nikulin
<br>
(<b>email: </b>[email protected],<b> github: </b><a
href="https://github.com/inikulin">inikulin</a>,
<b>twitter: </b><a href="https://twitter.com/_inikulin_">_inikulin_</a>)
</p>
<p class="lead">
This table lists <a href="https://tools.ietf.org/html/rfc6265">RFC 6265</a> compliance issues found in modern
browsers. Data was obtained by running the <a href="https://github.com/abarth/http-state/tree/master/tests">IETF
test suite</a> across major browsers using a <a href="https://github.com/inikulin/cookie-compat">specially made
test runner</a>. Test fails are divided into categories for the working group to distinguish implementation bugs
from de facto standards that should make their way to the specification.
</p>
<h3>Issue groups:</h3>
<input id="de-facto" type="checkbox" checked> <label></label> - Test fails in all browsers with the identical
results.
<br>
<input id="all-no-consensus" type="checkbox" checked> <label></label> - Test fails in all browsers, but with
different results. Possible de facto standard.
<br>
<input id="majority" type="checkbox" checked> <label></label> - Test fails in the majority of browsers with the
identical results. Possible de facto standard.
<br>
<input id="majority-no-consensus" type="checkbox" checked> <label></label> - Test fails in the majority of browsers,
but with different results.
<br>
<input id="minority" type="checkbox" checked> <label></label> - Test fails in the minority of browsers. More likely
it's an implementation bug than planned behavior.
<br>
<input id="bug" type="checkbox" checked> <label></label> - Test fails only in one browser. Implementation bug.
<br>
<br>
<b>Note:</b> all cookies are set on page <a href="#">http://home.example.org:8888/test</a> and results are inspected
on <a href="#">http://home.example.org:8888/cookie-parser-result</a>, except for those tests where the results URL
is explicitly specified.
</div>
<script async defer id="github-bjs" src="https://buttons.github.io/buttons.js"></script>
</body>
</html>