Object.create=function()

in content/js/css3-mediaqueries.js [2:7]


Object.create=function(o){
function F(){
};
F.prototype=o;
return new F();
};