blob: f910417e596c9430f2fdbcd8e7a216e5e4012ad0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE HTML>
<meta charset=utf-8>
<title>Bug 520992</title>
<style>
#borderBox {
background:gold;
height:100px;
box-sizing:border-box;
}
</style>
<div id="borderBox"></div>
<p id="heightWidth1"></p>
<script>
var divs = document.getElementsByTagName("div");
var textEle1 = document.getElementById("heightWidth1");
textEle1.innerHTML += "height = " + getComputedStyle(divs[0]).height;
textEle1.innerHTML += ", width = " + getComputedStyle(divs[0]).width;
</script>
|