Exemplo n.º 1
0
        public void CanParseDoctype()
        {
            "<!DOCTYPE html>".AssertParsesTo(
                Fragment.Doctype(" html")
                );

            "<!doctype html>".AssertParsesTo(
                Fragment.Doctype(" html")
                );
        }