blob: 724bb304ebcd7d0a9e576939a0b386d90aee2f6b (
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
|
<!doctype html>
<html reftest-zoom="2" class="reftest-wait">
<head>
<title>SVG page zoom test</title>
<style>
iframe, object, img {
width: 150px;
height: 100px;
border: none;
}
body {
background-color: lime;
}
</style>
<script>
var expected = 3;
var actual = 0;
function process_load() {
++actual;
if (actual == expected)
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body>
<div>
<iframe onload="process_load()" src="pass.svg"></iframe>
</div>
<div>
<object onload="process_load()" data="pass.svg"></object>
</div>
<div>
<img onload="process_load()" src="pass.svg">
</div>
</body>
</html>
|