Add spec for checking webgl support.

This commit is contained in:
Cheng Zhao 2014-05-18 22:37:59 +08:00
Родитель 6799fe5393
Коммит d5171ab941
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -65,3 +65,8 @@ describe 'chromium feature', ->
it 'does not crash', ->
RUint8Array = require('remote').getGlobal 'Uint8Array'
new RUint8Array
describe 'webgl', ->
it 'can be get as context in canvas', ->
webgl = document.createElement('canvas').getContext 'webgl'
assert.notEqual webgl, null