This file is indexed.

/usr/share/php/Horde/Css/Parser/vendor/sabberworm/php-css-parser/tests/Sabberworm/CSS/RuleSet/DeclarationBlockTest.php is in php-horde-css-parser 1.0.11-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php

namespace Sabberworm\CSS\RuleSet;

use Sabberworm\CSS\Parser;

class DeclarationBlockTest extends \PHPUnit_Framework_TestCase {

	/**
	 * @dataProvider expandBorderShorthandProvider
	 * */
	public function testExpandBorderShorthand($sCss, $sExpected) {
		$oParser = new Parser($sCss);
		$oDoc = $oParser->parse();
		foreach ($oDoc->getAllDeclarationBlocks() as $oDeclaration) {
			$oDeclaration->expandBorderShorthand();
		}
		$this->assertSame(trim((string) $oDoc), $sExpected);
	}

	public function expandBorderShorthandProvider() {
		return array(
			array('body{ border: 2px solid #000 }', 'body {border-width: 2px;border-style: solid;border-color: #000;}'),
			array('body{ border: none }', 'body {border-style: none;}'),
			array('body{ border: 2px }', 'body {border-width: 2px;}'),
			array('body{ border: #f00 }', 'body {border-color: #f00;}'),
			array('body{ border: 1em solid }', 'body {border-width: 1em;border-style: solid;}'),
			array('body{ margin: 1em; }', 'body {margin: 1em;}')
		);
	}

	/**
	 * @dataProvider expandFontShorthandProvider
	 * */
	public function testExpandFontShorthand($sCss, $sExpected) {
		$oParser = new Parser($sCss);
		$oDoc = $oParser->parse();
		foreach ($oDoc->getAllDeclarationBlocks() as $oDeclaration) {
			$oDeclaration->expandFontShorthand();
		}
		$this->assertSame(trim((string) $oDoc), $sExpected);
	}

	public function expandFontShorthandProvider() {
		return array(
			array(
				'body{ margin: 1em; }',
				'body {margin: 1em;}'
			),
			array(
				'body {font: 12px serif;}',
				'body {font-style: normal;font-variant: normal;font-weight: normal;font-size: 12px;line-height: normal;font-family: serif;}'
			),
			array(
				'body {font: italic 12px serif;}',
				'body {font-style: italic;font-variant: normal;font-weight: normal;font-size: 12px;line-height: normal;font-family: serif;}'
			),
			array(
				'body {font: italic bold 12px serif;}',
				'body {font-style: italic;font-variant: normal;font-weight: bold;font-size: 12px;line-height: normal;font-family: serif;}'
			),
			array(
				'body {font: italic bold 12px/1.6 serif;}',
				'body {font-style: italic;font-variant: normal;font-weight: bold;font-size: 12px;line-height: 1.6;font-family: serif;}'
			),
			array(
				'body {font: italic small-caps bold 12px/1.6 serif;}',
				'body {font-style: italic;font-variant: small-caps;font-weight: bold;font-size: 12px;line-height: 1.6;font-family: serif;}'
			),
		);
	}

	/**
	 * @dataProvider expandBackgroundShorthandProvider
	 * */
	public function testExpandBackgroundShorthand($sCss, $sExpected) {
		$oParser = new Parser($sCss);
		$oDoc = $oParser->parse();
		foreach ($oDoc->getAllDeclarationBlocks() as $oDeclaration) {
			$oDeclaration->expandBackgroundShorthand();
		}
		$this->assertSame(trim((string) $oDoc), $sExpected);
	}

	public function expandBackgroundShorthandProvider() {
		return array(
			array('body {border: 1px;}', 'body {border: 1px;}'),
			array('body {background: #f00;}', 'body {background-color: #f00;background-image: none;background-repeat: repeat;background-attachment: scroll;background-position: 0% 0%;}'),
			array('body {background: #f00 url("foobar.png");}', 'body {background-color: #f00;background-image: url("foobar.png");background-repeat: repeat;background-attachment: scroll;background-position: 0% 0%;}'),
			array('body {background: #f00 url("foobar.png") no-repeat;}', 'body {background-color: #f00;background-image: url("foobar.png");background-repeat: no-repeat;background-attachment: scroll;background-position: 0% 0%;}'),
			array('body {background: #f00 url("foobar.png") no-repeat center;}', 'body {background-color: #f00;background-image: url("foobar.png");background-repeat: no-repeat;background-attachment: scroll;background-position: center center;}'),
			array('body {background: #f00 url("foobar.png") no-repeat top left;}', 'body {background-color: #f00;background-image: url("foobar.png");background-repeat: no-repeat;background-attachment: scroll;background-position: top left;}'),
		);
	}

	/**
	 * @dataProvider expandDimensionsShorthandProvider
	 * */
	public function testExpandDimensionsShorthand($sCss, $sExpected) {
		$oParser = new Parser($sCss);
		$oDoc = $oParser->parse();
		foreach ($oDoc->getAllDeclarationBlocks() as $oDeclaration) {
			$oDeclaration->expandDimensionsShorthand();
		}
		$this->assertSame(trim((string) $oDoc), $sExpected);
	}

	public function expandDimensionsShorthandProvider() {
		return array(
			array('body {border: 1px;}', 'body {border: 1px;}'),
			array('body {margin-top: 1px;}', 'body {margin-top: 1px;}'),
			array('body {margin: 1em;}', 'body {margin-top: 1em;margin-right: 1em;margin-bottom: 1em;margin-left: 1em;}'),
			array('body {margin: 1em 2em;}', 'body {margin-top: 1em;margin-right: 2em;margin-bottom: 1em;margin-left: 2em;}'),
			array('body {margin: 1em 2em 3em;}', 'body {margin-top: 1em;margin-right: 2em;margin-bottom: 3em;margin-left: 2em;}'),
		);
	}

	/**
	 * @dataProvider createBorderShorthandProvider
	 * */
	public function testCreateBorderShorthand($sCss, $sExpected) {
		$oParser = new Parser($sCss);
		$oDoc = $oParser->parse();
		foreach ($oDoc->getAllDeclarationBlocks() as $oDeclaration) {
			$oDeclaration->createBorderShorthand();
		}
		$this->assertSame(trim((string) $oDoc), $sExpected);
	}

	public function createBorderShorthandProvider() {
		return array(
			array('body {border-width: 2px;border-style: solid;border-color: #000;}', 'body {border: 2px solid #000;}'),
			array('body {border-style: none;}', 'body {border: none;}'),
			array('body {border-width: 1em;border-style: solid;}', 'body {border: 1em solid;}'),
			array('body {margin: 1em;}', 'body {margin: 1em;}')
		);
	}

	/**
	 * @dataProvider createFontShorthandProvider
	 * */
	public function testCreateFontShorthand($sCss, $sExpected) {
		$oParser = new Parser($sCss);
		$oDoc = $oParser->parse();
		foreach ($oDoc->getAllDeclarationBlocks() as $oDeclaration) {
			$oDeclaration->createFontShorthand();
		}
		$this->assertSame(trim((string) $oDoc), $sExpected);
	}

	public function createFontShorthandProvider() {
		return array(
			array('body {font-size: 12px; font-family: serif}', 'body {font: 12px serif;}'),
			array('body {font-size: 12px; font-family: serif; font-style: italic;}', 'body {font: italic 12px serif;}'),
			array('body {font-size: 12px; font-family: serif; font-style: italic; font-weight: bold;}', 'body {font: italic bold 12px serif;}'),
			array('body {font-size: 12px; font-family: serif; font-style: italic; font-weight: bold; line-height: 1.6;}', 'body {font: italic bold 12px/1.6 serif;}'),
			array('body {font-size: 12px; font-family: serif; font-style: italic; font-weight: bold; line-height: 1.6; font-variant: small-caps;}', 'body {font: italic small-caps bold 12px/1.6 serif;}'),
			array('body {margin: 1em;}', 'body {margin: 1em;}')
		);
	}

	/**
	 * @dataProvider createDimensionsShorthandProvider
	 * */
	public function testCreateDimensionsShorthand($sCss, $sExpected) {
		$oParser = new Parser($sCss);
		$oDoc = $oParser->parse();
		foreach ($oDoc->getAllDeclarationBlocks() as $oDeclaration) {
			$oDeclaration->createDimensionsShorthand();
		}
		$this->assertSame(trim((string) $oDoc), $sExpected);
	}

	public function createDimensionsShorthandProvider() {
		return array(
			array('body {border: 1px;}', 'body {border: 1px;}'),
			array('body {margin-top: 1px;}', 'body {margin-top: 1px;}'),
			array('body {margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em;}', 'body {margin: 1em;}'),
			array('body {margin-top: 1em; margin-right: 2em; margin-bottom: 1em; margin-left: 2em;}', 'body {margin: 1em 2em;}'),
			array('body {margin-top: 1em; margin-right: 2em; margin-bottom: 3em; margin-left: 2em;}', 'body {margin: 1em 2em 3em;}'),
		);
	}

	/**
	 * @dataProvider createBackgroundShorthandProvider
	 * */
	public function testCreateBackgroundShorthand($sCss, $sExpected) {
		$oParser = new Parser($sCss);
		$oDoc = $oParser->parse();
		foreach ($oDoc->getAllDeclarationBlocks() as $oDeclaration) {
			$oDeclaration->createBackgroundShorthand();
		}
		$this->assertSame(trim((string) $oDoc), $sExpected);
	}

	public function createBackgroundShorthandProvider() {
		return array(
			array('body {border: 1px;}', 'body {border: 1px;}'),
			array('body {background-color: #f00;}', 'body {background: #f00;}'),
			array('body {background-color: #f00;background-image: url(foobar.png);}', 'body {background: #f00 url("foobar.png");}'),
			array('body {background-color: #f00;background-image: url(foobar.png);background-repeat: no-repeat;}', 'body {background: #f00 url("foobar.png") no-repeat;}'),
			array('body {background-color: #f00;background-image: url(foobar.png);background-repeat: no-repeat;}', 'body {background: #f00 url("foobar.png") no-repeat;}'),
			array('body {background-color: #f00;background-image: url(foobar.png);background-repeat: no-repeat;background-position: center;}', 'body {background: #f00 url("foobar.png") no-repeat center;}'),
			array('body {background-color: #f00;background-image: url(foobar.png);background-repeat: no-repeat;background-position: top left;}', 'body {background: #f00 url("foobar.png") no-repeat top left;}'),
		);
	}

}