Cookie Tests

helper

alert(document.cookie);

isSupported

GO!

Set and Read

Set and read a cookie named "example" with properties foo and bar. The alert should say "foo is 1".

set and read

Write and remove

Write a cookie and then remove it. The alert should say "undefined".

Write and remove