Skip to content

Commit cec2bcb

Browse files
committed
[TASK] Drop support for vendor-prefixed keyframe selectors
1 parent e0e0dd3 commit cec2bcb

File tree

3 files changed

+1
-29
lines changed

3 files changed

+1
-29
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Please also have a look at our
5151
- Drop magic method forwarding in `OutputFormat` (#898)
5252
- Drop `atRuleArgs()` from the `AtRule` interface (#1141)
5353
- Remove `OutputFormat::get()` and `::set()` (#1108, #1110)
54-
- Drop special support for vendor prefixes (#1083)
54+
- Drop special support for vendor prefixes (#1083, #1175)
5555
- Remove the IE hack in `Rule` (#995)
5656
- Drop `getLineNo()` from the `Renderable` interface (#1038)
5757
- Remove `OutputFormat::level()` (#874)

tests/ParserTest.php

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -787,23 +787,6 @@ public function selectorIgnoresInFile(): void
787787
self::assertSame($expected, $document->render());
788788
}
789789

790-
/**
791-
* @test
792-
*/
793-
public function keyframeSelectors(): void
794-
{
795-
$document = self::parsedStructureForFile(
796-
'keyframe-selector-validation',
797-
Settings::create()->withMultibyteSupport(true)
798-
);
799-
$expected = '@-webkit-keyframes zoom {0% {-webkit-transform: scale(1,1);}'
800-
. "\n\t"
801-
. '50% {-webkit-transform: scale(1.2,1.2);}'
802-
. "\n\t"
803-
. '100% {-webkit-transform: scale(1,1);}}';
804-
self::assertSame($expected, $document->render());
805-
}
806-
807790
/**
808791
* @test
809792
*/

tests/fixtures/keyframe-selector-validation.css

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)