summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/relayout-image-load.html
blob: 30091c5681d54efb90440bc6049616bbefb9ad99 (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>
<head>
<title>CSS Flexbox: Relayout after loading an image</title>
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#resolve-flexible-lengths">
<link rel="help" href="https://drafts.csswg.org/css-images-4/#image-values">
<meta name="assert" content="This test ensures flexbox does a relayout after an image loads.">
<link href="support/flexbox.css" rel="stylesheet">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
</head>
<body>
<div id=log></div>
<p>Test passes if a green 100x100 image is rendered.</p>
<div id="test" class="flexbox">
    &nbsp;
    <div class="flexbox">
        <img data-expected-width=100 data-expected-height=100 id="image" onload="imageLoaded()">
    </div>
</div>
<script>

function changeImage()
{
    document.getElementById("image").src = "support/100x100-green.png";
}
step_timeout(changeImage, 0);

function imageLoaded()
{
    checkLayout('#test')
}
</script>
</body>
</html>