Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / script-tests / font-size-zero.js
blob28027acd25d63ed0a31310f3f2d4a5988dc84d2e
1 var s = document.createElement('span');
2 s.style.fontSize = 0;
3 s.innerHTML = 'Text';
4 document.body.appendChild(s);
6 shouldBe("s.getBoundingClientRect().height", "0");
7 shouldBe("s.getBoundingClientRect().width", "0");
9 document.body.removeChild(s);