2012-12-17 07:47:05 -08:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
2012-12-20 17:59:46 +00:00
|
|
|
* @bug 8004832
|
|
|
|
* @summary Add new doclint package
|
2012-12-17 07:47:05 -08:00
|
|
|
* @library ..
|
|
|
|
* @build DocLintTester
|
|
|
|
* @run main DocLintTester -ref RepeatedAttr.out RepeatedAttr.java
|
|
|
|
*/
|
|
|
|
|
|
|
|
// tidy: Warning: <.*> dropping value ".*" for repeated attribute ".*"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* <img src="image.gif" alt alt="summary">
|
|
|
|
*/
|
|
|
|
public class RepeatedAttr { }
|