mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|