BloomTests.Book.HtmlDomTests.GetIsImgOrSomethingWithBackgroundImage_NoBackgroundImageProperty_False C# (CSharp) Method

GetIsImgOrSomethingWithBackgroundImage_NoBackgroundImageProperty_False() private method

        public void GetIsImgOrSomethingWithBackgroundImage_NoBackgroundImageProperty_False()
        {
            var dom = new XmlDocument();
            dom.LoadXml("<div style=\"color:red;\"></div>");
            Assert.IsFalse(HtmlDom.IsImgOrSomethingWithBackgroundImage(dom.DocumentElement));
        }
HtmlDomTests