Test Case Boilerplate
Fork this way...
by dmethvin
HTML
<div></div>
CSS
div {
height: 10px
}
JavaScript
var div = document.getElementsByTagName("div")[0];
div.style.height ="0.1px";
console.log(window.getComputedStyle(div, null).height);
div.style.height ="0.0000001px";
console.log(window.getComputedStyle(div, null).height);