You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1234567891011 |
- --INI--
- Attr.EnableID = true
- --HTML--
- <a name="foo" id="foo">Test</a>
- <a name="foo">Test2</a>
- <a name="bar" id="baz">Test3</a>
- --EXPECT--
- <a name="foo" id="foo">Test</a>
- <a>Test2</a>
- <a name="bar" id="baz">Test3</a>
- --# vim: et sw=4 sts=4
|