forked from webkitdotnet/webkitdotnet
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for Ignoring SSL Peer errors in WebKitBrowserTest/Progr…
…am.cs using /IgnoreSSL CLArg. Added support for Basic Authentication in each project, adding Username and Password properties to WebKitBrowser/WebKitBrowser.cs and WebKitCore/WebKitBrowserCore.cs, and UI elements under Edit in WebKitBrowserTest/MainForm.cs. Added support for compiling WebKit.Interop.dll using build_webkit.interop_2010.bat.
- Loading branch information
Mitch Connors
authored and
Mitch Connors
committed
Jun 8, 2011
1 parent
160a223
commit be36ec5
Showing
10 changed files
with
408 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Text; | ||
using System.Windows.Forms; | ||
|
||
namespace WebKitBrowserTest | ||
{ | ||
public partial class PasswordDialog : Form | ||
{ | ||
public PasswordDialog() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
public string Username | ||
{ | ||
get { return this.usernameTextBox.Text; } | ||
set { this.usernameTextBox.Text = value; } | ||
} | ||
|
||
public string Password | ||
{ | ||
get { return this.passwordTextBox.Text; } | ||
set { this.passwordTextBox.Text = value; } | ||
} | ||
|
||
private void OKButton_Click(object sender, EventArgs e) | ||
{ | ||
this.DialogResult = System.Windows.Forms.DialogResult.OK; | ||
} | ||
|
||
private void CancelButton_Click(object sender, EventArgs e) | ||
{ | ||
this.DialogResult = System.Windows.Forms.DialogResult.Cancel; | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.