summaryrefslogtreecommitdiffstats
path: root/layout/reftests/w3c-css/received/css-values-3/reference/vh_not_refreshing_on_chrome-ref.html
blob: eb5b15d4aa5d34a22a56aa7a6374a96e7fcc0cdc (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<!-- Submitted from TestTWF Paris -->
<head>

	<title>CSS Reference File</title>
	<link rel="author" title="Marc Bourlon" href="mailto:marc@bourlon.com">

	<style type="text/css">

		* { margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif; font-size: 13px; }

		#frameTest { width: 600px; height: 200px; border: 1px solid #000; }

	</style>

	<script type="text/javascript">
		var height = 200;

		function resizeReference() {

			var frameTest = document.getElementById('frameTest');

			// let's resize the iframe vertically only, showing that the vh sizes is not updated.
			if (height <= 300) {

				//frameTest.style.width = height++ + "px";
				frameTest.style.height = height++ + "px";

				setTimeout(resizeReference, 10);

			} else {

				// uncomment the next line to see how a width resize triggers a layout recalculation
				//frameTest.style.width = (parseInt(window.getComputedStyle(document.getElementById('frameTest'))['width'], 10) + 1) + "px";

			}

		}

		setTimeout(resizeReference, 10);
	</script>

</head>
<body>

<iframe id="frameTest" src="vh_not_refreshing_on_chrome_iframe-ref.html" frameborder="0"></iframe>

</body>
</html>