This commit is contained in:
Alon Zakai 2012-09-11 18:16:55 -07:00
Родитель 9309a720c9
Коммит 0e3266a04b
1 изменённых файлов: 28 добавлений и 1 удалений

Просмотреть файл

@ -148,7 +148,34 @@ if (typeof nagivator == 'undefined') {
};
var document = {
getElementById: function(id) {
return null;
switch(id) {
case 'canvas': {
return {
getContext: function(which) {
switch(which) {
case 'experimental-webgl': {
return {
getExtension: function() { return 1 },
requestPointerLock: function() {
throw 'pointerLock';
},
};
}
default: throw 'canvas.getContext: ' + which;
}
},
};
}
default: throw 'getElementById: ' + id;
}
},
querySelector: function() {
return {
classList: {
add: function(){},
remove: function(){},
},
};
},
};
var performance = {