mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
20 lines
355 B
HTML
20 lines
355 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.cell {display:table-cell}
|
|
</style>
|
|
<script type="text/javascript">
|
|
function doTest() {
|
|
ss = document.styleSheets[0];
|
|
ss.cssRules[0].style.display="block";
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="doTest()">
|
|
<div class="cell">foo</div><div class="cell">bar</div><div class="cell">baz</div>
|
|
</body>
|
|
|
|
</html>
|