You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@ All notable changes to **bUnit** will be documented in this file. The project ad
6
6
7
7
## [Unreleased]
8
8
9
+
- Submit buttons and input fields now no longer cause a form submit when they have the `@onclick:preventDefault` attribute. By [@JelleHissink](https://github.com/JelleHissink).
10
+
9
11
## [1.16.2] - 2023-02-07
10
12
11
13
- Changed semantic comparer to handle elements parsed outside their proper context, e.g. an `<path>` element parsed without being inside a `<svg>` element. The semantic comparer will now be able to treat those as regular elements and thus be able to compare correctly to other elements of the same type and with the same node name. By [@egil](https://github.com/egil).
Copy file name to clipboardExpand all lines: src/bunit.web/EventDispatchExtensions/TriggerEventDispatchExtensions.cs
+22-13Lines changed: 22 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -80,30 +80,39 @@ public static Task TriggerEventAsync(this IElement element, string eventName, Ev
80
80
}
81
81
82
82
[SuppressMessage("Globalization","CA1308:Normalize strings to uppercase",Justification="HTML events are standardize to lower case and safe in this context.")]
0 commit comments