java-topology/test/langtools/tools/doclint/AnchorTest.java
russell@unturf.com 0a580b313d undefect. CWE-407 — 63 sites patched across 27 ecosystems
Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com

Patches, unit tests, benchmarks, whitepaper, and outreach briefs.
Public domain — no copyright claimed. Use freely.
2026-03-26 17:11:57 -04:00

67 lines
1.1 KiB
Java

/*
* @test /nodynamiccopyright/
* @bug 8004832 8247957
* @summary Add new doclint package
* @modules jdk.javadoc/jdk.javadoc.internal.doclint
* @build DocLintTester
* @run main DocLintTester -Xmsgs:all,-missing -ref AnchorTest.out AnchorTest.java
*/
/** */
public class AnchorTest {
// tests for <a id=value>
/**
* <a id=foo></a>
*/
public void a_id_foo() { }
/**
* <a id=foo></a>
*/
public void a_id_already_defined() { }
/**
* <a id=></a>
*/
public void a_id_empty() { }
/**
* <a id="123 "></a>
*/
public void a_id_invalid() { }
/**
* <a id ></a>
*/
public void a_id_missing() { }
// tests for id=value on non-<a> tags
/**
* <p id=p_id_foo>text</p>
*/
public void p_id_foo() { }
/**
* <p id=foo>text</p>
*/
public void p_id_already_defined() { }
/**
* <p id=>text</p>
*/
public void p_id_empty() { }
/**
* <p id="123 ">text</p>
*/
public void p_id_invalid() { }
/**
* <p id >text</p>
*/
public void p_id_missing() { }
}