So, some Javascript can be punched into the address bar to do some interesting stuff. Well, I found one which allowed you to rotate webpages to flip them, tilt them, and alike, as long as you have Firefox as your main browser. The code for that is below, you just put that in your address bar and hit enter. To undo it, reload the page.
javascript:document.body.style.MozTransform=’rotate(180deg)’;void(0);
Information is posted here because it is VERY hard to find on Google. There is a site that posts little code bits like that called Marklets. The source link to that specific tidbit is here. So, check them out if you want to find silly things, and try out the above line if you want to see what a flipped out browser is like.
Also works in Webkit (and probably other HTMl5 browsers). FYI Chrome uses Webkit.
javascript:document.body.style.WebkitTransform=’rotate(180deg)’;void(0);
You can also scale and skew. See http://tekkie.flashbit.net/css/css3-transforms-in-webkit
Trry this:
javascript:document.body.style.webkitTransform=”scaleX(-1)”;void(0);