It took me a while to figure this one out. What you have to do is prompt to "login" again. If the user is already logged in, Facebook checks what permissions you are asking for in the "login" function against what is already granted. If some permissions are not yet granted, Facebook prompts the user for those extra permissions, NOT to re-login.
That you use the login function to prompt for additional permission I think is counter intuitive. But this is how you would prompt for different permissions only when needed, which is what Facebook recommends.
FB.login(function(response) {
...
}, {'perms':'read_stream,publish_stream,offline_access'});
http://developers.facebook.com/docs/reference/javascript/fb.login/