├── .editorconfig ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── Key.snk ├── LICENSE.txt ├── Microsoft.Css.Parser.sln ├── NuGet.config ├── README.md ├── azure-pipelines.yml ├── src └── Microsoft.Css.Parser │ ├── Classify │ ├── ClassificationTypes.cs │ └── ClassifyContext.cs │ ├── Debug.cs │ ├── Document │ ├── CssTree.cs │ ├── CssTreeAsync.cs │ ├── CssTreeEvents.cs │ └── CssTreeIncrementalParse.cs │ ├── GlobalSuppressions.cs │ ├── Microsoft.Css.Parser.csproj │ ├── Parser │ ├── ComplexItem.cs │ ├── CssParser.cs │ ├── CssParserFactory.cs │ ├── IncrementalParseHelper.cs │ ├── IncrementalParseItem.cs │ ├── ItemFactory.cs │ ├── ParseError.cs │ ├── ParseItem.cs │ ├── ParseItemList.cs │ └── Visitor.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resource.Designer.cs │ ├── Resource.resx │ ├── Text │ ├── CharacterStream.cs │ ├── DecodedChar.cs │ ├── ITextProvider.cs │ ├── ITextTypeProvider.cs │ ├── StringTextProvider.cs │ ├── TextHelper.cs │ ├── TextHelpers.cs │ ├── TextRange.cs │ └── TextTypes.cs │ ├── Tokens │ ├── CssToken.cs │ ├── CssTokenizer.cs │ ├── IncrementalTokenizer.cs │ ├── TokenList.cs │ ├── TokenStream.cs │ └── TokenizerFactory.cs │ ├── TreeItems │ ├── AtDirectives │ │ ├── AtBlockDirective.cs │ │ ├── AtDirective.cs │ │ ├── AtLineDirective.cs │ │ ├── CharsetDirective.cs │ │ ├── CounterDirective.cs │ │ ├── FontFaceDirective.cs │ │ ├── ImportDirective.cs │ │ ├── KeyFramesBlock.cs │ │ ├── KeyFramesDirective.cs │ │ ├── KeyFramesRuleSet.cs │ │ ├── KeyFramesSelector.cs │ │ ├── MarginDirective.cs │ │ ├── MediaDirective.cs │ │ ├── MediaExpression.cs │ │ ├── MediaQuery.cs │ │ ├── NamespaceDirective.cs │ │ ├── PageDirective.cs │ │ ├── PageDirectiveBlock.cs │ │ ├── UnknownDirective.cs │ │ ├── UnknownDirectiveBlock.cs │ │ └── ViewportDirective.cs │ ├── BlockItem.cs │ ├── Comments │ │ ├── CComment.cs │ │ ├── Comment.cs │ │ ├── CommentTokenItem.cs │ │ └── HtmlComment.cs │ ├── Declaration.cs │ ├── Functions │ │ ├── FunctionArgument.cs │ │ ├── FunctionAttr.cs │ │ ├── FunctionCalc.cs │ │ ├── FunctionColor.cs │ │ ├── FunctionCounter.cs │ │ ├── FunctionExpression.cs │ │ ├── FunctionFormat.cs │ │ ├── FunctionLocal.cs │ │ ├── FunctionVar.cs │ │ ├── Functions.cs │ │ └── UrlItem.cs │ ├── InlineStyle.cs │ ├── ItemName.cs │ ├── PropertyValues │ │ ├── HexColorValue.cs │ │ ├── NumericalValue.cs │ │ ├── PropertyValueBlock.cs │ │ ├── PropertyValueHelpers.cs │ │ ├── UnitHelpers.cs │ │ ├── UnitValue.cs │ │ └── UnknownPropertyValue.cs │ ├── RuleBlock.cs │ ├── RuleSet.cs │ ├── Selectors │ │ ├── AttributeSelector.cs │ │ ├── ClassSelector.cs │ │ ├── IdReferenceOperator.cs │ │ ├── IdSelector.cs │ │ ├── PseudoClassFunctionSelector.cs │ │ ├── PseudoClassSelector.cs │ │ ├── PseudoElementFunctionSelector.cs │ │ ├── PseudoElementSelector.cs │ │ ├── PseudoFunctionMatches.cs │ │ ├── PseudoFunctionNot.cs │ │ ├── PseudoSelectorArgument.cs │ │ ├── Selector.cs │ │ ├── SimpleSelector.cs │ │ └── SubjectSelector.cs │ ├── StarHackPropertyName.cs │ ├── Stylesheet.cs │ ├── TokenItem.cs │ ├── UnknownBlock.cs │ └── UnknownItem.cs │ └── Utilities │ ├── GapBuffer.cs │ ├── IRange.cs │ ├── ItemHandlerRegistry.cs │ ├── ListEnumerator.cs │ ├── RangeExtensions.cs │ └── SortedRangeList.cs └── test └── Microsoft.Css.Parser.Test ├── Classify └── ClassifyContextTest.cs ├── Document ├── DocumentTest.cs └── IncrementalParseTest.cs ├── Files ├── 001 │ ├── AttributeSelectors.css │ ├── AttributeSelectors.css.green.tokens │ ├── AttributeSelectors.css.tokens │ ├── AttributeSelectors.css.tree │ ├── Colors.css │ ├── Colors.css.green.tokens │ ├── Colors.css.tokens │ ├── Colors.css.tree │ ├── Comments.css │ ├── Comments.css.green.tokens │ ├── Comments.css.tokens │ ├── Comments.css.tree │ ├── ContentProperty.css │ ├── ContentProperty.css.green.tokens │ ├── ContentProperty.css.tokens │ ├── ContentProperty.css.tree │ ├── CounterStyleDirective.css │ ├── CounterStyleDirective.css.green.tokens │ ├── CounterStyleDirective.css.tokens │ ├── CounterStyleDirective.css.tree │ ├── CustomPropertyNames.css │ ├── CustomPropertyNames.css.green.tokens │ ├── CustomPropertyNames.css.tokens │ ├── CustomPropertyNames.css.tree │ ├── ErrorRecovery.css │ ├── ErrorRecovery.css.green.tokens │ ├── ErrorRecovery.css.tokens │ ├── ErrorRecovery.css.tree │ ├── ImportDirective.css │ ├── ImportDirective.css.green.tokens │ ├── ImportDirective.css.tokens │ ├── ImportDirective.css.tree │ ├── MediaDirective.css │ ├── MediaDirective.css.green.tokens │ ├── MediaDirective.css.tokens │ ├── MediaDirective.css.tree │ ├── Namespace.css │ ├── Namespace.css.green.tokens │ ├── Namespace.css.tokens │ ├── Namespace.css.tree │ ├── PageDirective.css │ ├── PageDirective.css.green.tokens │ ├── PageDirective.css.tokens │ ├── PageDirective.css.tree │ ├── ParseErrors.css │ ├── ParseErrors.css.green.tokens │ ├── ParseErrors.css.tokens │ ├── ParseErrors.css.tree │ ├── PsuedoFunction.css │ ├── PsuedoFunction.css.green.tokens │ ├── PsuedoFunction.css.tokens │ ├── PsuedoFunction.css.tree │ ├── ScopeBlocker.css │ ├── ScopeBlocker.css.green.tokens │ ├── ScopeBlocker.css.tokens │ ├── ScopeBlocker.css.tree │ ├── SelectorCombineOperators.css │ ├── SelectorCombineOperators.css.green.tokens │ ├── SelectorCombineOperators.css.tokens │ ├── SelectorCombineOperators.css.tree │ ├── Selectors.css │ ├── Selectors.css.green.tokens │ ├── Selectors.css.tokens │ ├── Selectors.css.tree │ ├── SlashNineHack.css │ ├── SlashNineHack.css.green.tokens │ ├── SlashNineHack.css.tokens │ ├── SlashNineHack.css.tree │ ├── Strings.css │ ├── Strings.css.green.tokens │ ├── Strings.css.tokens │ ├── Strings.css.tree │ ├── TagNames.css │ ├── TagNames.css.green.tokens │ ├── TagNames.css.tokens │ ├── TagNames.css.tree │ ├── Unicode.css │ ├── Unicode.css.green.tokens │ ├── Unicode.css.tokens │ ├── Unicode.css.tree │ ├── UnknownBlocks.css │ ├── UnknownBlocks.css.green.tokens │ ├── UnknownBlocks.css.tokens │ └── UnknownBlocks.css.tree └── 090 │ ├── 90.css │ ├── 90.css.green.tokens │ ├── 90.css.tokens │ ├── 90.css.tree │ ├── 91.css │ ├── 91.css.green.tokens │ ├── 91.css.tokens │ ├── 91.css.tree │ ├── 92.css │ ├── 92.css.green.tokens │ ├── 92.css.tokens │ ├── 92.css.tree │ ├── 93.css │ ├── 93.css.green.tokens │ ├── 93.css.tokens │ ├── 93.css.tree │ ├── 94.css │ ├── 94.css.green.tokens │ ├── 94.css.tokens │ └── 94.css.tree ├── GlobalSuppressions.cs ├── Helpers.cs ├── Microsoft.Css.Parser.Test.csproj ├── Parser ├── ComplexItemTest.cs ├── ItemFactoryTest.cs ├── ParseFilesTest.cs ├── ParseItemListTest.cs ├── ParseItemTest.cs └── VisitorTest.cs ├── Properties └── AssemblyInfo.cs ├── Text ├── CharStreamTest.cs ├── StringTextProviderTests.cs ├── StringTextSourceTest.cs ├── TextHelperTests.cs ├── TextHelpersTest.cs └── TextRangeTest.cs ├── Tokens ├── TokenListTest.cs ├── TokenStreamTest.cs ├── TokenTest.cs ├── TokenizeFilesTest.cs ├── TokenizerFactoryTest.cs └── TokenizerTest.cs ├── TreeItems ├── AtDirectives │ ├── AtDirectiveTest.cs │ ├── CharsetDirectiveTest.cs │ ├── ImportDirectiveTest.cs │ ├── MediaDirectiveTest.cs │ ├── NamespaceDirectiveTest.cs │ ├── PageDirectiveTest.cs │ └── UnknownDirectiveTest.cs ├── CCommentTest.cs ├── DeclarationTest.cs ├── FontFaceRuleTest.cs ├── FunctionTests.cs ├── HexColorValueTest.cs ├── HtmlCommentTest.cs ├── IdSelectorTest.cs ├── InlineStyleTest.cs ├── ItemNameTest.cs ├── KeyframesRuleTest.cs ├── NumericalValueTest.cs ├── PseudoTest.cs ├── RuleBlockTest.cs ├── RulesetTest.cs ├── Selectors │ ├── AttributeSelectorTest.cs │ ├── ClassSelectorTest.cs │ ├── SelectorGroupTest.cs │ ├── SelectorTest.cs │ └── SimpleSelectorTest.cs ├── StylesheetTest.cs ├── TokenItemTest.cs ├── UnitValueTest.cs ├── UnknownItemTest.cs └── UrlTest.cs ├── UnitTestBase.cs └── Utilities ├── GapBufferTest.cs └── SortedRangeListTest.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/Key.snk -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Microsoft.Css.Parser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/Microsoft.Css.Parser.sln -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Classify/ClassificationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Classify/ClassificationTypes.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Classify/ClassifyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Classify/ClassifyContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Debug.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Document/CssTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Document/CssTree.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Document/CssTreeAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Document/CssTreeAsync.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Document/CssTreeEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Document/CssTreeEvents.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Document/CssTreeIncrementalParse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Document/CssTreeIncrementalParse.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Microsoft.Css.Parser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Microsoft.Css.Parser.csproj -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/ComplexItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/ComplexItem.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/CssParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/CssParser.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/CssParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/CssParserFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/IncrementalParseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/IncrementalParseHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/IncrementalParseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/IncrementalParseItem.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/ItemFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/ItemFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/ParseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/ParseError.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/ParseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/ParseItem.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/ParseItemList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/ParseItemList.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Parser/Visitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Parser/Visitor.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Resource.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Resource.resx -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Text/CharacterStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Text/CharacterStream.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Text/DecodedChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Text/DecodedChar.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Text/ITextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Text/ITextProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Text/ITextTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Text/ITextTypeProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Text/StringTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Text/StringTextProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Text/TextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Text/TextHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Text/TextHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Text/TextHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Text/TextRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Text/TextRange.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Text/TextTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Text/TextTypes.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Tokens/CssToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Tokens/CssToken.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Tokens/CssTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Tokens/CssTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Tokens/IncrementalTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Tokens/IncrementalTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Tokens/TokenList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Tokens/TokenList.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Tokens/TokenStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Tokens/TokenStream.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Tokens/TokenizerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Tokens/TokenizerFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/AtBlockDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/AtBlockDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/AtDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/AtDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/AtLineDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/AtLineDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/CharsetDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/CharsetDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/CounterDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/CounterDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/FontFaceDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/FontFaceDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/ImportDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/ImportDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/KeyFramesBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/KeyFramesBlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/KeyFramesDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/KeyFramesDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/KeyFramesRuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/KeyFramesRuleSet.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/KeyFramesSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/KeyFramesSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/MarginDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/MarginDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/MediaDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/MediaDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/MediaExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/MediaExpression.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/MediaQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/MediaQuery.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/NamespaceDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/NamespaceDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/PageDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/PageDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/PageDirectiveBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/PageDirectiveBlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/UnknownDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/UnknownDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/UnknownDirectiveBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/UnknownDirectiveBlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/AtDirectives/ViewportDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/AtDirectives/ViewportDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/BlockItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/BlockItem.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Comments/CComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Comments/CComment.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Comments/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Comments/Comment.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Comments/CommentTokenItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Comments/CommentTokenItem.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Comments/HtmlComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Comments/HtmlComment.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Declaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Declaration.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/FunctionArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/FunctionArgument.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/FunctionAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/FunctionAttr.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/FunctionCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/FunctionCalc.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/FunctionColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/FunctionColor.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/FunctionCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/FunctionCounter.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/FunctionExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/FunctionExpression.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/FunctionFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/FunctionFormat.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/FunctionLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/FunctionLocal.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/FunctionVar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/FunctionVar.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/Functions.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Functions/UrlItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Functions/UrlItem.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/InlineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/InlineStyle.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/ItemName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/ItemName.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/PropertyValues/HexColorValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/PropertyValues/HexColorValue.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/PropertyValues/NumericalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/PropertyValues/NumericalValue.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/PropertyValues/PropertyValueBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/PropertyValues/PropertyValueBlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/PropertyValues/PropertyValueHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/PropertyValues/PropertyValueHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/PropertyValues/UnitHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/PropertyValues/UnitHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/PropertyValues/UnitValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/PropertyValues/UnitValue.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/PropertyValues/UnknownPropertyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/PropertyValues/UnknownPropertyValue.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/RuleBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/RuleBlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/RuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/RuleSet.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/AttributeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/AttributeSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/ClassSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/ClassSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/IdReferenceOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/IdReferenceOperator.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/IdSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/IdSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoClassFunctionSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoClassFunctionSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoClassSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoClassSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoElementFunctionSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoElementFunctionSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoElementSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoElementSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoFunctionMatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoFunctionMatches.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoFunctionNot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoFunctionNot.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoSelectorArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/PseudoSelectorArgument.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/Selector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/SimpleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/SimpleSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Selectors/SubjectSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Selectors/SubjectSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/StarHackPropertyName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/StarHackPropertyName.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/Stylesheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/Stylesheet.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/TokenItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/TokenItem.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/UnknownBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/UnknownBlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/TreeItems/UnknownItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/TreeItems/UnknownItem.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Utilities/GapBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Utilities/GapBuffer.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Utilities/IRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Utilities/IRange.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Utilities/ItemHandlerRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Utilities/ItemHandlerRegistry.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Utilities/ListEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Utilities/ListEnumerator.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Utilities/RangeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Utilities/RangeExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Css.Parser/Utilities/SortedRangeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/src/Microsoft.Css.Parser/Utilities/SortedRangeList.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Classify/ClassifyContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Classify/ClassifyContextTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Document/DocumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Document/DocumentTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Document/IncrementalParseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Document/IncrementalParseTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/AttributeSelectors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/AttributeSelectors.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/AttributeSelectors.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/AttributeSelectors.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/AttributeSelectors.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/AttributeSelectors.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/AttributeSelectors.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/AttributeSelectors.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Colors.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Colors.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Colors.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Colors.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Colors.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Colors.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Colors.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Comments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Comments.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Comments.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Comments.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Comments.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Comments.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Comments.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Comments.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ContentProperty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ContentProperty.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ContentProperty.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ContentProperty.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ContentProperty.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ContentProperty.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ContentProperty.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ContentProperty.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/CounterStyleDirective.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/CounterStyleDirective.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/CounterStyleDirective.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/CounterStyleDirective.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/CounterStyleDirective.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/CounterStyleDirective.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/CounterStyleDirective.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/CounterStyleDirective.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/CustomPropertyNames.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/CustomPropertyNames.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/CustomPropertyNames.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/CustomPropertyNames.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/CustomPropertyNames.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/CustomPropertyNames.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/CustomPropertyNames.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/CustomPropertyNames.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ErrorRecovery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ErrorRecovery.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ErrorRecovery.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ErrorRecovery.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ErrorRecovery.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ErrorRecovery.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ErrorRecovery.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ErrorRecovery.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ImportDirective.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ImportDirective.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ImportDirective.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ImportDirective.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ImportDirective.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ImportDirective.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ImportDirective.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ImportDirective.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/MediaDirective.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/MediaDirective.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/MediaDirective.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/MediaDirective.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/MediaDirective.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/MediaDirective.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/MediaDirective.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/MediaDirective.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Namespace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Namespace.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Namespace.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Namespace.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Namespace.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Namespace.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Namespace.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Namespace.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/PageDirective.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/PageDirective.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/PageDirective.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/PageDirective.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/PageDirective.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/PageDirective.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/PageDirective.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/PageDirective.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ParseErrors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ParseErrors.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ParseErrors.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ParseErrors.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ParseErrors.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ParseErrors.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ParseErrors.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ParseErrors.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/PsuedoFunction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/PsuedoFunction.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/PsuedoFunction.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/PsuedoFunction.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/PsuedoFunction.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/PsuedoFunction.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/PsuedoFunction.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/PsuedoFunction.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ScopeBlocker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ScopeBlocker.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ScopeBlocker.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ScopeBlocker.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ScopeBlocker.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ScopeBlocker.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/ScopeBlocker.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/ScopeBlocker.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/SelectorCombineOperators.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/SelectorCombineOperators.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/SelectorCombineOperators.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/SelectorCombineOperators.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/SelectorCombineOperators.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/SelectorCombineOperators.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/SelectorCombineOperators.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/SelectorCombineOperators.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Selectors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Selectors.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Selectors.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Selectors.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Selectors.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Selectors.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Selectors.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Selectors.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/SlashNineHack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/SlashNineHack.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/SlashNineHack.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/SlashNineHack.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/SlashNineHack.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/SlashNineHack.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/SlashNineHack.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/SlashNineHack.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Strings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Strings.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Strings.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Strings.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Strings.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Strings.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Strings.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Strings.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/TagNames.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/TagNames.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/TagNames.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/TagNames.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/TagNames.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/TagNames.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/TagNames.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/TagNames.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Unicode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Unicode.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Unicode.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Unicode.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Unicode.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Unicode.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/Unicode.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/Unicode.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/UnknownBlocks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/UnknownBlocks.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/UnknownBlocks.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/UnknownBlocks.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/UnknownBlocks.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/UnknownBlocks.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/001/UnknownBlocks.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/001/UnknownBlocks.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/90.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/90.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/90.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/90.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/90.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/90.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/90.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/90.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/91.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/91.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/91.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/91.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/91.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/91.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/91.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/91.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/92.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/92.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/92.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/92.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/92.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/92.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/92.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/92.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/93.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/93.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/93.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/93.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/93.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/93.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/93.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/93.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/94.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/94.css -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/94.css.green.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/94.css.green.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/94.css.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/94.css.tokens -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Files/090/94.css.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Files/090/94.css.tree -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Helpers.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Microsoft.Css.Parser.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Microsoft.Css.Parser.Test.csproj -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Parser/ComplexItemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Parser/ComplexItemTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Parser/ItemFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Parser/ItemFactoryTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Parser/ParseFilesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Parser/ParseFilesTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Parser/ParseItemListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Parser/ParseItemListTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Parser/ParseItemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Parser/ParseItemTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Parser/VisitorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Parser/VisitorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Text/CharStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Text/CharStreamTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Text/StringTextProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Text/StringTextProviderTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Text/StringTextSourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Text/StringTextSourceTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Text/TextHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Text/TextHelperTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Text/TextHelpersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Text/TextHelpersTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Text/TextRangeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Text/TextRangeTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Tokens/TokenListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Tokens/TokenListTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Tokens/TokenStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Tokens/TokenStreamTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Tokens/TokenTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Tokens/TokenTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Tokens/TokenizeFilesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Tokens/TokenizeFilesTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Tokens/TokenizerFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Tokens/TokenizerFactoryTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Tokens/TokenizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Tokens/TokenizerTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/AtDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/AtDirectiveTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/CharsetDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/CharsetDirectiveTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/ImportDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/ImportDirectiveTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/MediaDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/MediaDirectiveTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/NamespaceDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/NamespaceDirectiveTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/PageDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/PageDirectiveTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/UnknownDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/AtDirectives/UnknownDirectiveTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/CCommentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/CCommentTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/DeclarationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/DeclarationTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/FontFaceRuleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/FontFaceRuleTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/FunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/FunctionTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/HexColorValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/HexColorValueTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/HtmlCommentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/HtmlCommentTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/IdSelectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/IdSelectorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/InlineStyleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/InlineStyleTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/ItemNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/ItemNameTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/KeyframesRuleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/KeyframesRuleTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/NumericalValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/NumericalValueTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/PseudoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/PseudoTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/RuleBlockTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/RuleBlockTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/RulesetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/RulesetTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/Selectors/AttributeSelectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/Selectors/AttributeSelectorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/Selectors/ClassSelectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/Selectors/ClassSelectorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/Selectors/SelectorGroupTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/Selectors/SelectorGroupTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/Selectors/SelectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/Selectors/SelectorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/Selectors/SimpleSelectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/Selectors/SimpleSelectorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/StylesheetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/StylesheetTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/TokenItemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/TokenItemTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/UnitValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/UnitValueTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/UnknownItemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/UnknownItemTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/TreeItems/UrlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/TreeItems/UrlTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/UnitTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/UnitTestBase.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Utilities/GapBufferTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Utilities/GapBufferTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Css.Parser.Test/Utilities/SortedRangeListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/cssparser/HEAD/test/Microsoft.Css.Parser.Test/Utilities/SortedRangeListTest.cs --------------------------------------------------------------------------------