本文整理汇总了C#中RequestReduce.Reducer.BackgroundImageClass.ScoreSpecificity方法的典型用法代码示例。如果您正苦于以下问题:C# BackgroundImageClass.ScoreSpecificity方法的具体用法?C# BackgroundImageClass.ScoreSpecificity怎么用?C# BackgroundImageClass.ScoreSpecificity使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RequestReduce.Reducer.BackgroundImageClass
的用法示例。
在下文中一共展示了BackgroundImageClass.ScoreSpecificity方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WillAccuratelyScoreCombination
public void WillAccuratelyScoreCombination()
{
var testable = new BackgroundImageClass(@"h1#myid.myclass a.special:visited span#myid[title=""title""]{{color:blue}}", 0);
var score = testable.ScoreSpecificity();
Assert.Equal(243, score);
}
示例2: WillScore10ForPseudoClasses
public void WillScore10ForPseudoClasses()
{
var testable = new BackgroundImageClass(@"li:first-child a:link{{color:blue}}", 0);
var score = testable.ScoreSpecificity();
Assert.Equal(22, score);
}
示例3: WillScore1ForPseudoElements
public void WillScore1ForPseudoElements()
{
var testable = new BackgroundImageClass(@"li:first-letter p:first-line p:before p:after{{color:blue}}", 0);
var score = testable.ScoreSpecificity();
Assert.Equal(8, score);
}
示例4: WillScore1ForElements
public void WillScore1ForElements()
{
var testable = new BackgroundImageClass(@"h1 + h2 span > a * p{{color:blue}}", 0);
var score = testable.ScoreSpecificity();
Assert.Equal(5, score);
}
示例5: WillScore10Forattributes
public void WillScore10Forattributes()
{
var testable = new BackgroundImageClass(@"*[title=""title""]{{color:blue}}", 0);
var score = testable.ScoreSpecificity();
Assert.Equal(10, score);
}
示例6: WillScore10Forclasses
public void WillScore10Forclasses()
{
var testable = new BackgroundImageClass(".cls1.cls4 .cls2 *.cls3{{color:blue}}", 0);
var score = testable.ScoreSpecificity();
Assert.Equal(40, score);
}
示例7: WillScore100ForIDs
public void WillScore100ForIDs()
{
var testable = new BackgroundImageClass("#id1 #id2 *#id3{{color:blue}}", 0);
var score = testable.ScoreSpecificity();
Assert.Equal(300, score);
}
示例8: WillScore0ForUniversalSelector
public void WillScore0ForUniversalSelector()
{
var testable = new BackgroundImageClass("*{{color:blue}}", 0);
var score = testable.ScoreSpecificity();
Assert.Equal(0, score);
}