blob: 381bf0a1ca87dfffb7ea5da2467ce4c5d09c35ca (
plain)
1
2
3
4
5
6
7
8
9
10
|
public class Issue344Test3 extends Issue344Base {
protected String getText() {
// test 3 - slight rendering artifacts around very large letters
return "abcde";
}
public static void main(String[] args) {
new Issue344Test3().run(args);
}
}
|