summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/img/model-novalid.html
blob: d16a80641696671b8b241c05b768f4e9bbc088f5 (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
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>&lt;img&gt;</title>
</head>
<body>
  <!-- is structured inline -->
  <p><img
      src="url"
      alt="text"
      width="42"
      height="095"
      usemap="url"
      ismap="ismap"
      class="class"
      lang="en"></img></p>

  <!-- is strictly inline -->
  <p><dfn><img
      src="url"
      alt="text"
      width="42"
      height="095"
      usemap="url"
      ismap="ismap"
      class="class"
      lang="en"></img></dfn></p>

  <!-- src and alt are required, others optional -->
  <p><img src="ur" alt="text"></img></p>
</body>
</html>