Go to a page that returns no content but returns a status header; for example, in nodejs:
require('http').createServer(function (req, res) {
res.writeHead(404);
res.end();
}).listen(80);
When you go to the page in firefox, it just displays a blank page, but if you go to the page in chrome or etc, it displays an error message.