예제 #1
0
파일: DOM.cs 프로젝트: Rajbandi/AngleSharp
        public void HtmlHasRightBodyElement()
        {
            var doc  = new HTMLDocument();
            var root = new HTMLHtmlElement();

            doc.AppendChild(root);
            var body = new HTMLBodyElement();

            root.AppendChild(body);
            Assert.AreEqual(body, doc.Body);
        }
예제 #2
0
파일: DOM.cs 프로젝트: Rajbandi/AngleSharp
        public void HtmlHasRightHeadElement()
        {
            var doc  = new HTMLDocument();
            var root = new HTMLHtmlElement();

            doc.AppendChild(root);
            var head = new HTMLHeadElement();

            root.AppendChild(head);
            Assert.AreEqual(head, doc.Head);
        }