public function AttributeNodeTest::getSpecificityValueTestData in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/css-selector/Tests/Node/AttributeNodeTest.php \Symfony\Component\CssSelector\Tests\Node\AttributeNodeTest::getSpecificityValueTestData()
Overrides AbstractNodeTest::getSpecificityValueTestData
File
- vendor/
symfony/ css-selector/ Tests/ Node/ AttributeNodeTest.php, line 28
Class
Namespace
Symfony\Component\CssSelector\Tests\NodeCode
public function getSpecificityValueTestData() {
return array(
array(
new AttributeNode(new ElementNode(), null, 'attribute', 'exists', null),
10,
),
array(
new AttributeNode(new ElementNode(null, 'element'), null, 'attribute', 'exists', null),
11,
),
array(
new AttributeNode(new ElementNode(), null, 'attribute', '$=', 'value'),
10,
),
array(
new AttributeNode(new ElementNode(), 'namespace', 'attribute', '$=', 'value'),
10,
),
);
}