-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc0ad92
commit bd83c45
Showing
56 changed files
with
576 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
src/AngleSharp.Css/Dom/Internal/Rules/CssCounterStyleRule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
namespace AngleSharp.Css.Dom | ||
{ | ||
using AngleSharp.Css; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
|
||
/// <summary> | ||
/// Represents the @counter-style rule. | ||
/// </summary> | ||
[DebuggerDisplay(null, Name = "CssCounterStyleRule ({StyleName})")] | ||
sealed class CssCounterStyleRule : CssDeclarationRule, ICssRule | ||
{ | ||
#region ctor | ||
|
||
internal CssCounterStyleRule(ICssStyleSheet owner) | ||
: base(owner, CssRuleType.CounterStyle, RuleNames.CounterStyle, new HashSet<String>()) | ||
{ | ||
} | ||
|
||
#endregion | ||
|
||
#region Properties | ||
|
||
/// <summary> | ||
/// Gets or sets the counter style name argument. | ||
/// </summary> | ||
public String StyleName { get; set; } | ||
|
||
#endregion | ||
|
||
#region Methods | ||
|
||
protected override void ReplaceWith(ICssRule rule) | ||
{ | ||
} | ||
|
||
#endregion | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
src/AngleSharp.Css/Dom/Internal/Rules/CssFontFeatureValuesRule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
namespace AngleSharp.Css.Dom | ||
{ | ||
using AngleSharp.Css; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
|
||
/// <summary> | ||
/// Represents the @font-feature-values rule. | ||
/// </summary> | ||
[DebuggerDisplay(null, Name = "CssFontFeatureValuesRule ({FamilyName})")] | ||
sealed class CssFontFeatureValuesRule : CssDeclarationRule, ICssRule | ||
{ | ||
#region ctor | ||
|
||
internal CssFontFeatureValuesRule(ICssStyleSheet owner) | ||
: base(owner, CssRuleType.FontFeatureValues, RuleNames.FontFeatureValues, new HashSet<String>()) | ||
{ | ||
// character-variant, styleset, stylistic, ornaments, annotation, swash | ||
} | ||
|
||
#endregion | ||
|
||
#region Properties | ||
|
||
/// <summary> | ||
/// Gets or sets the family name argument. | ||
/// </summary> | ||
public String FamilyName { get; set; } | ||
|
||
#endregion | ||
|
||
#region Methods | ||
|
||
protected override void ReplaceWith(ICssRule rule) | ||
{ | ||
} | ||
|
||
#endregion | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.