blob: 68ccba4398d62028d018c0848553913b8dd9b18c (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<link rel="author" title="Vitor Roriz" href="https://github.com/vitorroriz">
<link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-size-adjust-prop">
<link rel="match" href="font-size-adjust-reload-ref.html">
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<iframe id="iframe" width=400 height=400 frameBorder=0 src="font-size-adjust-reload-ref.html"></iframe>
</body>
<script>
const iframe = document.getElementById('iframe');
iframe.contentWindow.location.reload();
iframe.contentWindow.onload = function(){
document.documentElement.classList.remove("reftest-wait");
};
</script>
</html>
|