Changeset 55985 for trunk/tests/phpunit/tests/style-engine/styleEngine.php
- Timestamp:
- 06/22/2023 08:16:05 AM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/style-engine/styleEngine.php
r55175 r55985 26 26 * 27 27 * @ticket 56467 28 * @ticket 58549 28 29 * 29 30 * @covers ::wp_style_engine_get_styles … … 190 191 'fontWeight' => '800', 191 192 'lineHeight' => '1.3', 193 'textColumns' => '2', 192 194 'textDecoration' => 'underline', 193 195 'textTransform' => 'uppercase', … … 197 199 'options' => null, 198 200 'expected_output' => array( 199 'css' => 'font-size:clamp(2em, 2vw, 4em);font-family:Roboto,Oxygen-Sans,Ubuntu,sans-serif;font-style:italic;font-weight:800;line-height:1.3; text-decoration:underline;text-transform:uppercase;letter-spacing:2;',201 'css' => 'font-size:clamp(2em, 2vw, 4em);font-family:Roboto,Oxygen-Sans,Ubuntu,sans-serif;font-style:italic;font-weight:800;line-height:1.3;column-count:2;text-decoration:underline;text-transform:uppercase;letter-spacing:2;', 200 202 'declarations' => array( 201 203 'font-size' => 'clamp(2em, 2vw, 4em)', … … 204 206 'font-weight' => '800', 205 207 'line-height' => '1.3', 208 'column-count' => '2', 206 209 'text-decoration' => 'underline', 207 210 'text-transform' => 'uppercase',
Note: See TracChangeset
for help on using the changeset viewer.