I'm getting a similar problem caused by particles:
Javascript Exception (Line: 18821 File: '13805000' Tag: 'timer'): TypeError: Result of expression 'this.runtime.glwrap' [null] is not an object.
This points to the function in the C2 runtime:
typeProto.loadTextures = function ()
{
if (this.is_family || this.webGL_texture)
?return;
this.webGL_texture = this.runtime.glwrap.loadTexture(this.texture_img, true, this.runtime.linearSampling, this.texture_pixelformat);
};
This happens whether WebGL is enabled or disabled. Deleting the particles solved the problem.