Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My previous question about the same subject has given me 8 negative votes. I hope now to be clearer. If you run

document.cookie ='ppkcookie1=testcookie;';alert(document.cookie);

on any web page the content of the cookie appears in the message box. if you run the code above inside a very simple data-uri page (you could copy and paste the following string on the address bar in FF or Chrome, since IE does not support it)

 data:text/html;charset=utf-8,<h1>hi people</h1><script>document.cookie='ppkcookie1=testcookie;';alert(document.cookie);</script>

the message box is empty

Does this mean that cookies cannot be used on data-uri pages or there is some errors in my piece of code?

share|improve this question
If I paste this into the address bar in chrome - preceded by javascript: - it alerts just fine. javascript: document.cookie ='ppkcookie1=testcookie;';alert(document.cookie);. What are you expecting and what are you seeing? – hookedonwinter Jul 5 '12 at 13:11
2  
Paste the following string, which complies data uri scheme: data:text/html,<h1>hi people</h1><script>document.cookie='ppkcookie1=testcookie;';alert(document.cooki‌​e);</script> – tic Jul 5 '12 at 13:49
Chrome result: "Uncaught Error: SECURITY_ERR: DOM Exception 18". – Rob W Jul 5 '12 at 18:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.