Rewrite CSS url() and font-family output logic.
[htmlpurifier.git] / tests / HTMLPurifier / HTMLT / id-name-mix.htmlt
bloba48da8e62536a2de1931a198b4dfdea50defea55
1 --INI--
2 Attr.EnableID = true
3 --HTML--
4 <a name="foo" id="foo">Test</a>
5 <a name="foo">Test2</a>
6 <a name="bar" id="baz">Test3</a>
7 --EXPECT--
8 <a name="foo" id="foo">Test</a>
9 <a>Test2</a>
10 <a name="bar" id="baz">Test3</a>
11 --# vim: et sw=4 sts=4