Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0f1f2f5cc4fdfe5d7877e64bb6d4942bd7cfd0af (plain) (blame)
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
37
<!--
   This file is used to test whether or not the dynamic producer will be used
   when loading an xhtml document from outside a doc.zip. The paragraph at the
   bottom should always be filtered out by the producer.
--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<title>dynamic.xhtml</title>
</head>
<body>

<h2>dynamic.xhtml</h2>
<p>
This page contains filtered content.
</p>

<p filter="os!=invalid">
This paragraph, which has filter attribute "os!=invalid" should never be filtered out.
</p>

<p filter="plugin!=my.invalid.plugin.id.012345">
This paragraph, which has filter attribute "plugin!=my.invalid.plugin.id.012345" should never be filtered out.
</p>

<p>
   <filter name="plugin" value="!my.invalid.plugin.id.012345"/>
   This paragraph, which has filter element name="plugin", value="!my.invalid.plugin.id.012345",
   should never be filtered out.
</p>

<p id="my.paragraph.id">
   This paragraph comes from <code>include.xhtml</code>.
</p>

</body>
</html>

Back to the top