I have just added google frame to my blog template. I was trying to find some sites actually use chrome frame without any success. Just out of curiosity I added it to my own website.
Here are screenshots after install chrome frame in my ie8.
Update 1: The display will flick when it switches rendering engine. Ie8 will also switch render engine back when I click a regular webpage.
The problem is that it removes cookie too aggressively. All non admin page will be virtually static. So I made my own vcl to remove cookies for only static files.
Here it is
backend default{
.host="10.25.0.1";
.port="80";}
sub vcl_recv {# Normalize Content-Encodingif(req.http.Accept-Encoding){if(req.url ~ "\.(jpg|png|gif|gz|tgz|bz2|lzma|tbz)(\?.*|)$"){
remove req.http.Accept-Encoding;} elsif (req.http.Accept-Encoding ~ "gzip"){
set req.http.Accept-Encoding ="gzip";} elsif (req.http.Accept-Encoding ~ "deflate"){
set req.http.Accept-Encoding ="deflate";}else{
remove req.http.Accept-Encoding;}}# Remove cookies and query string for real static filesif(req.url ~ "^/[^?]+\.(jpeg|jpg|png|gif|ico|js|css|txt|gz|zip|lzma|bz2|tgz|tbz|html|htm)(\?.*|)$"){
unset req.http.cookie;
set req.url= regsub(req.url,"\?.*$","");}# Remove cookies from front pageif(req.url ~ "^/$"){
unset req.http.cookie;}}
sub vcl_fetch {if(req.url ~ "^/$"){
unset obj.http.set-cookie;}}
So all interactive pages will be sent to php backend with correct cookies. All static files and front page will be served by varnish proxy.