33 lines
1.3 KiB
C#
33 lines
1.3 KiB
C#
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|||
|
|
|||
|
using System.Web.Razor.Parser.SyntaxTree;
|
|||
|
using System.Web.Razor.Test.Framework;
|
|||
|
using System.Web.Razor.Tokenizer.Symbols;
|
|||
|
using Xunit;
|
|||
|
|
|||
|
namespace System.Web.Razor.Test.Parser.CSharp
|
|||
|
{
|
|||
|
public class CSharpWhitespaceHandlingTest : CsHtmlMarkupParserTestBase
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public void StatementBlockDoesNotAcceptTrailingNewlineIfNewlinesAreSignificantToAncestor()
|
|||
|
{
|
|||
|
ParseBlockTest(@"@: @if (true) { }
|
|||
|
}",
|
|||
|
new MarkupBlock(
|
|||
|
Factory.MarkupTransition()
|
|||
|
.Accepts(AcceptedCharacters.None),
|
|||
|
Factory.MetaMarkup(":", HtmlSymbolType.Colon),
|
|||
|
Factory.Markup(" "),
|
|||
|
new StatementBlock(
|
|||
|
Factory.CodeTransition()
|
|||
|
.Accepts(AcceptedCharacters.None),
|
|||
|
Factory.Code("if (true) { }")
|
|||
|
.AsStatement()
|
|||
|
),
|
|||
|
Factory.Markup("\r\n")
|
|||
|
.Accepts(AcceptedCharacters.None)));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|