This repository has been archived by the owner on Jan 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change approach in tests to avoid data race
- Loading branch information
1 parent
4cfa2e0
commit 2223948
Showing
2 changed files
with
62 additions
and
86 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
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,12 @@ | ||
<html> | ||
<body> | ||
<select name="numbers" id="numbers-options" onchange="selectOnChange(this)" multiple> | ||
<option value="zero">Zero</option> | ||
<option value="one">One</option> | ||
<option value="two">Two</option> | ||
<option value="three">Three</option> | ||
<option value="four">Four</option> | ||
<option value="five">Five</option> | ||
</select> | ||
</body> | ||
</html> |