summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/text-autosizing/oscillation-javascript-fontsize-change.html
blob: 8e39e47b9e3db7eff8e5e3b1d6f36930218785f0 (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
<!DOCTYPE html>
<html style="font-size: 16px">
<head>
<meta name="viewport" content="width=800">
<style>
  body {
    width: 800px;
    margin: 0;
    overflow-y: hidden;
  }
  .largersize{font-size: 1.1em}
</style>
<script src="resources/autosizingTest.js"></script>
</head>
<body>
<div>
    This paragraph should be autosized to 40px<br/>
    because it contains line breaks.<br/>
    This test is intended to check<br/>
    that there are no oscillations due to javascript<br/>
    briefly increasing the font size of a<br/>
    small paragraph below.
</div>
<div id="sizechanging" style="position: absolute; bottom: 0;">
    This text changes size using javascript below.
</div>
<script>
    var element = document.getElementById("sizechanging");
    var forceLayout = element.offsetHeight;
    element.className = 'largersize';
    forceLayout = element.offsetHeight;
    element.className = '';
    forceLayout = element.offsetHeight;
</script>
</body>
</html>