blob: 8032a8bbfb70e8d140ff202ad5a9edddae500edc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<html class="reftest-wait">
<head>
<style>
body { width: 100px; line-height: 15px; }
div { width: 100px; float: left }
div.a { height: 30px; background: lightblue; }
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>
<br/>
<div class="b" id="changeMe"></div>
<br/>
<div class="c"></div>
</body>
</html>
|