servo/tests/html/test_style.html
2014-12-18 12:54:02 -05:00

12 lines
542 B
HTML

<div id="test" style="display: block; background-color: black; background-position: top left; font-style: italic">test text!</div>
<script>
var id = document.getElementById('test');
alert(id.style.display);
id.style.display = 'none';
alert(id.style.display);
alert(id.style.fontStyle + ' ' + id.style['font-style']);
id.style.background = "black";
alert(document.getElementById('test').style.background);
alert(document.getElementById('test').style.backgroundColor);
alert(document.getElementById('test').style.backgroundPosition);
</script>