What is the reason behind getComputedStyle always returning element visibility as visible
even when no explicit visibility has been set?
For instance:
getComputedStyle($('#block1')[0],null).visibility;
--- "visible"
Meanwhile:
$('#block1')[0].style.visibility
--- ""