HtmlAgilityPack marcação inválida

Estou usando o HtmlAgilityPack do codeplex. Quando passo uma string html simples e, em seguida, recupero o html resultante, ele corta as tag

Exemplo

string html = "<select><option>test</option></select>";
HtmlDocument document = new HtmlDocument();
document.LoadHtml(html);

var result = d.DocumentNode.OuterHtml;

// result gives me:
<select><option>test</select>

Portanto, a tag de fechamento da opção está ausente. Estou perdendo uma configuração ou usando isso errado?

questionAnswers(2)

yourAnswerToTheQuestion