We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5364783 commit 3cbd08fCopy full SHA for 3cbd08f
src/AngleSharp.Diffing.Tests/Strategies/NodeStrategies/ForwardSearchingNodeMatcherTest.cs
@@ -17,8 +17,11 @@ public ForwardSearchingNodeMatcherTest(DiffingTestFixture fixture) : base(fixtur
17
18
[Theory(DisplayName = "The matcher matches two nodes with the same node name")]
19
[InlineData("textnode", "textnode")]
20
- [InlineData("<!--comment-->", "<!--comment-->")]
21
[InlineData("<p></p>", "<p></p>")]
+ [InlineData("<!--comment-->", "<!--comment-->")]
22
+ [InlineData("<!-- [endif] -->", "<!-- [endif] -->")]
23
+ [InlineData("<!-- -->", "<!-- -->")]
24
+ [InlineData("<!---->", "<!---->")]
25
public void Test001(string controlHtml, string testHtml)
26
{
27
var controls = ToSourceCollection(controlHtml, ComparisonSourceType.Control);
0 commit comments