summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/text-autosizing/contenteditable-fontsize-change-expected.html
blob: 27a0af81a56f29a621f802c727593e350c109b24 (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>
<html style="font-size: 16px">
<head>

<meta name="viewport" content="width=800">
<style>
  body {
    width: 800px;
    margin: 0;
    overflow-y: hidden;
  }
</style>

</head>
<body>

<section contenteditable="true" style="font-size: 2.5rem">
The text inside this textarea should be autosized to 40px computed font-size (16 * 800/320).
</section>

</body>
</html>