2007-11-01 19:31:36 +00:00
|
|
|
<html class="reftest-wait">
|
|
|
|
<head>
|
|
|
|
<style>
|
2007-11-02 01:13:28 +00:00
|
|
|
body { width: 100px; line-height: 15px; }
|
2007-11-01 19:31:36 +00:00
|
|
|
div { width: 100px; float: left }
|
2007-11-01 20:17:22 +00:00
|
|
|
div.a { height: 30px; background: lightblue; }
|
2007-11-01 19:31:36 +00:00
|
|
|
div.b { height: 10px; background: lightgreen; }
|
|
|
|
div.c { height: 10px; background: black; }
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
function tweak() {
|
|
|
|
document.getElementById('changeMe').style.height = '100px';
|
|
|
|
document.documentElement.className = "";
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="tweak()">
|
|
|
|
<div class="a"></div>
|
|
|
|
<div class="b" id="changeMe"></div>
|
|
|
|
<div class="c"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|