Cookies are working for me, but you are right, they don't seem to work on that calculator page. It may be an issue with script-generated cookies (vs. server generated ones). I can't find a setting for this in WebKit, but I'll look into it.
<!-- saved from url=(0014)about:internet --> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>cookie test</title> </head> <body> <script type="text/javascript"> function getcookievalue(name) { var ind; name += '='; str = document.cookie; if ((ind = str.indexOf(name)) != -1) { var end = str.indexOf(';', ind); if (end == -1) end = str.length; str = str.substr(ind+name.length, end-ind-name.length); str = unescape(str); return str; } return ''; } function setcookievalue(name, value) { name += '='; var expDays = 100; var exp = new Date(); exp.setTime(exp.getTime() + (expDays*24*60*60*1000)); var expire = '; expires=' + exp.toGMTString(); var str = name + escape(value) + expire; document.cookie = str; } alert(getcookievalue('test')); setcookievalue('test', new Date()); </script> </body> </html>