summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html/elements/pre/model-novalid.html
blob: 384386c2b0a84084a96420f38182bfef125f3484 (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
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>&lt;pre&gt;</title>
</head>
<body>
  <!-- is block -->
  <pre class="class" id="id" lang="en">text</pre>

  <!-- is structured inline -->
  <p>paragraph
    <pre>text</pre>
  </p>

  <!-- can contain interactive -->
  <pre><a>text</a></pre>
  <!-- but not struct-inline -->
  <p>paragraph
    <pre><a>text</a></pre>
  </p>

  <!-- can contain strictly inline -->
  <pre>text <em>elem</em></pre>
</body>
</html>