Unregister from GCM when the only GCM app is removed
[chromium-blink-merge.git] / chrome / test / data / android / cookie.html
blobf2e6415ca16782a05f0b89200e564149dd63e80d
1 <!DOCTYPE html>
2 <html>
3 <script>
4 if (window.location.hash.indexOf('clear') != -1) {
5 document.cookie = '';
8 function setCookie() {
9 document.cookie = 'Foo=Bar';
12 function getCookie() {
13 return document.cookie;
15 </script>
16 <body>Test for setting and getting cookies.</body>
17 </html>