Simon Massey - 2012-01-05

Not repeatable with hotsax0.1.2.b which passes the following test:

InputSource input = new InputSource(new StringReader(" <p>\n" +
"This is some\n" +
"new information\n" +
"for you\n" +
"</p>\n" +
"\n" +
""));

parser.parse(input);

String expected = "\n" +
"This is some\n" +
"new information\n" +
"for you\n";

Assert.assertThat(startEvent.text().getBytes(), is(expected.getBytes()));