5 references to GetElementsByTagName
System.Windows.Forms.Tests (5)
System\Windows\Forms\HtmlElementTests.cs (5)
1935HtmlElementCollection collection = element.GetElementsByTagName("form"); 1936Assert.NotSame(collection, element.GetElementsByTagName("form")); 1943Assert.Empty(element.GetElementsByTagName("NoSuchTagName")); 1944Assert.Empty(element.GetElementsByTagName("")); 1959Assert.Throws<ArgumentException>(() => element.GetElementsByTagName(null));