File: case-119c.html

package info (click to toggle)
tidy-html5 2%3A5.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 10,668 kB
  • sloc: ansic: 43,061; ruby: 1,368; sh: 404; xml: 225; cpp: 30; makefile: 26
file content (28 lines) | stat: -rw-r--r-- 1,304 bytes parent folder | download | duplicates (2)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>
      Issue #119 - Test HTML4, custom-tags: inline
    </title>
  </head>
  <body>
    <h1>
      About this case
    </h1>
    <p>
      This test case ensures that Tidy handles autonomous custom tags appropriately for pre-HTML5 documents. Tidy will support them via the <kbd>custom-tags</kbd> option, even though such documents do not support such tags.
    </p>
    <p>
      In this case, <kbd>custom-tags</kbd> is <strong>inline</strong>, and so Tidy should allow them, and treat them as inline. However because this is not an HTML5 document, Tidy will report warnings about their use.
    </p>
    <pizzerias>
      This is a user-defined tag, and Tidy should provide a warning, but allow it.
    </pizzerias>
    <jets-pizza>
      This is a user-defined tag, and Tidy should provide a warning, but allow it. Even though <kbd>custom-tags</kbd> is <strong>inline</strong>, this tag is configured as <strong>blocklevel</strong> in the configuration, and so will be treated as such.
    </jets-pizza>
    <p>
      <dominos-pizza>This is an autonomous custom tag,</dominos-pizza>, and it should show up as an inline element, <new-inline-element>as does this.</new-inline-element>.
    </p>
  </body>
</html>