I put a wamp server on my pc and then downloaded everything from a webgl sample (there were some problems but I managed to solve them).
The webGL sample won’t play on my local URL
(http://localhost/mypage.htm)
everything seems fine, the chrome inspector says everything’s correct and using the GL debugger extension I even managed to get a few screenshots of the sample correctly rendered.
The problem is: the rendering area remains black. It happens either on my local WAMP server and on my remote web server, the entire page loads correctly and the simulation seems running ( I can see the FPS meter running on the top left corner of the screen ), but I can’t see the animation
Here’s a screenshot to explain it better

Update:
Here’s a screenshot with the webGL debugger, as you can see the rendering is properly done with the shaders and everything else (texture found and loaded), but the screen remains black. I’m also attaching the html file I’m using (the other are just libraries downloaded as-they-are from the webpage)

Solved: you will never believe this…
The line
caused for some weird reason the webgl demo being rendered a page down than the visible area (i.e. I just had to scroll down to find the rendering running)
Thanks for your help anyway!