tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / text / script-tests / font-size-zero.js
1 var s = document.createElement('span');
2 s.style.fontSize = 0;
3 s.innerHTML = 'Text';
4 document.body.appendChild(s);
5
6 shouldBe("s.getBoundingClientRect().height", "0");
7 shouldBe("s.getBoundingClientRect().width", "0");
8
9 document.body.removeChild(s);