Imported Upstream version 6.4.0.137

Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-07-26 19:53:28 +00:00
parent e9207cf623
commit ef583813eb
2712 changed files with 74169 additions and 40587 deletions

View File

@@ -456,7 +456,7 @@ namespace MonoTests.System.Resources {
{
const string resXTemplate =
"<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
"<o:Document xmlns:x=\"http://www.mono-project.com\" xmlns:o=\"http://tempuri.org\">" +
"<o:Document xmlns:x=\"http://www.example.com\" xmlns:o=\"http://tempuri.org\">" +
" <o:Content>" +
" <x:DaTa name=\"name\">" +
" <o:value>de Icaza</o:value>" +

View File

@@ -262,5 +262,17 @@ namespace MonoTests.System.Windows.Forms
dgv.Columns.Add (dvc);
Assert.IsNull (dvc.CellTemplate.DataGridView, "#1");
}
[Test]
public void SetNewHeaderCell ()
{
var dgv = new DataGridView ();
var dvc = new DataGridViewTextBoxColumn ();
var dch = new DataGridViewColumnHeaderCell ();
dgv.Columns.Add (dvc);
dvc.HeaderCell = dch;
Assert.IsNotNull (dch.DataGridView, "#1");
Assert.True (dch.ColumnIndex >= 0, "#2");
}
}
}

View File

@@ -441,7 +441,7 @@ namespace MonoTests.System.Windows.Forms
[Test]
public void TestWebBrowserDocumentCompletedEventArgs()
{
Uri url = new Uri("http://www.mono-project.com/");
Uri url = new Uri("http://www.example.com/");
WebBrowserDocumentCompletedEventArgs e = new WebBrowserDocumentCompletedEventArgs(url);
@@ -451,7 +451,7 @@ namespace MonoTests.System.Windows.Forms
[Test]
public void TestWebBrowserNavigatedEventArgs ()
{
Uri url = new Uri ("http://www.mono-project.com/");
Uri url = new Uri ("http://www.example.com/");
WebBrowserNavigatedEventArgs e = new WebBrowserNavigatedEventArgs (url);
@@ -461,7 +461,7 @@ namespace MonoTests.System.Windows.Forms
[Test]
public void TestWebBrowserNavigatingEventArgs ()
{
Uri url = new Uri ("http://www.mono-project.com/");
Uri url = new Uri ("http://www.example.com/");
string frame = "TOP";
WebBrowserNavigatingEventArgs e = new WebBrowserNavigatingEventArgs (url, frame);