Skip to content

Commit 0473d1d

Browse files
committed
resolve conflicts
1 parent b182835 commit 0473d1d

File tree

1 file changed

+3
-30
lines changed
  • docs/testing-framework/write-tests-in-code/advanced-topics-wtc/html-popups-and-dialogs-wtc

1 file changed

+3
-30
lines changed

Diff for: docs/testing-framework/write-tests-in-code/advanced-topics-wtc/html-popups-and-dialogs-wtc/firefox-dialogs.md

+3-30
Original file line numberDiff line numberDiff line change
@@ -205,64 +205,37 @@ Public Class FFDownloadsDialog
205205
Me._currentState = value
206206
End Set
207207
End Property
208-
<<<<<<< HEAD
209208
#End Region
210-
```
211-
=======
212-
# End Region
213209
````
214-
>>>>>>> 540128e (Unify code blocks and fix some mistakes)
215210

216211

217212
So far everything is very simple and straightforward. Now that the local variables and properties are complete, it's time to implement the constructor. Since all we're going to do to handle the dialog is close it, we don't require the Desktop or DialogButton parameter that standard Win32 dialog handlers require:
218213

219-
<<<<<<< HEAD
220-
```C#
221-
#region Constructor
222-
=======
223214
````C#
224-
# region Constructor
225-
>>>>>>> 540128e (Unify code blocks and fix some mistakes)
215+
#region Constructor
226216
/// <summary>
227217
/// Create the dialog.
228218
/// </summary>
229219
public FFDownloadsDialog()
230220
{
231221
}
232-
<<<<<<< HEAD
233222
#endregion
234-
```
235-
```VB
236-
#Region "Constructor"
237-
=======
238-
# endregion
239223
````
240224
````VB
241-
# Region "Constructor"
242-
>>>>>>> 540128e (Unify code blocks and fix some mistakes)
225+
#Region "Constructor"
243226
' <summary>
244227
' Create the dialog handler instance.
245228
' </summary>
246229
Public Sub New()
247230
MyBase.New()
248231
End Sub
249-
<<<<<<< HEAD
250232
#End Region
251-
```
252-
253-
Since there's nothing to the constructor, we could optionally leave it out and let the default constructor take over. So let's start implementing the IDialog methods starting with IsDialogActive.
254-
255-
```C#
256-
#region IDialog Members
257-
=======
258-
# End Region
259233
````
260234

261235
Since there's nothing to the constructor, we could optionally leave it out and let the default constructor take over. So let's start implementing the IDialog methods starting with IsDialogActive.
262236

263237
````C#
264-
# region IDialog Members
265-
>>>>>>> 540128e (Unify code blocks and fix some mistakes)
238+
#region IDialog Members
266239
/// <summary>
267240
/// Check whether the dialog is present or not. This function is
268241
/// called by the DialogMonitor object.

0 commit comments

Comments
 (0)