1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12

content / test / data / set_cookie.html [blame]

<!DOCTYPE html>
<html>
<head>
<title>Loading...</title>
<script>
  if (document.cookie == "A=B")
    document.title = "cookie set";
  else
    document.title = "cookie not set";
</script>
</head>
</html>