summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/img-title-only-w-sizing.html
blob: c290d9d6b127509277130de017f5ee73740f7c6e (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
<!doctype html>
<title>Images with only title should be treated as a replaced element</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="author" href="mailto:yuzhehan@chromium.org" title="Yu Han">
<link rel="help" href="https://crbug.com/958250">
<link ref="help" href="https://html.spec.whatwg.org/multipage/rendering.html#images-3">
<style>
  .title-only {
    width: 100px;
    height: 150px;
  }
</style>
<img class="title-only" title="title">
<img width="100" height="150px" title="title">
<script>
async_test(t => {
  onload = t.step_func_done(function() {
    for (const img of document.querySelectorAll("img")) {
      assert_equals(img.offsetWidth, 100, `width: ${img.outerHTML}`);
      assert_equals(img.offsetHeight, 150, `height: ${img.outerHTML}`);
    }
  });
});
</script>