5 references to GetElementsByTagName
System.Windows.Forms.Tests (5)
System\Windows\Forms\HtmlElementTests.cs (5)
1933HtmlElementCollection collection = element.GetElementsByTagName("form"); 1934Assert.NotSame(collection, element.GetElementsByTagName("form")); 1941Assert.Empty(element.GetElementsByTagName("NoSuchTagName")); 1942Assert.Empty(element.GetElementsByTagName("")); 1957Assert.Throws<ArgumentException>(() => element.GetElementsByTagName(null));