Initializes a new instance of the Element class.
string expected = "<span><b>Hello</b></span>"; string actual = new Element("span", new Element("b") .Update("Hello")).ToString(); Assert.AreEqual(expected, actual);
string expected = "<span><b>Hello</b></span>"; string actual = new Element("span", new Element("b") .Update("Hello")).ToString(); Assert.AreEqual(expected, actual);