Skip to content

[TASK] Drop support for vendor-prefixed keyframe selectors #1175

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Please also have a look at our
- Drop magic method forwarding in `OutputFormat` (#898)
- Drop `atRuleArgs()` from the `AtRule` interface (#1141)
- Remove `OutputFormat::get()` and `::set()` (#1108, #1110)
- Drop special support for vendor prefixes (#1083)
- Drop special support for vendor prefixes (#1083, #1175)
- Remove the IE hack in `Rule` (#995)
- Drop `getLineNo()` from the `Renderable` interface (#1038)
- Remove `OutputFormat::level()` (#874)
Expand Down
17 changes: 0 additions & 17 deletions tests/ParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -787,23 +787,6 @@ public function selectorIgnoresInFile(): void
self::assertSame($expected, $document->render());
}

/**
* @test
*/
public function keyframeSelectors(): void
{
$document = self::parsedStructureForFile(
'keyframe-selector-validation',
Settings::create()->withMultibyteSupport(true)
);
$expected = '@-webkit-keyframes zoom {0% {-webkit-transform: scale(1,1);}'
. "\n\t"
. '50% {-webkit-transform: scale(1.2,1.2);}'
. "\n\t"
. '100% {-webkit-transform: scale(1,1);}}';
self::assertSame($expected, $document->render());
}

/**
* @test
*/
Expand Down
11 changes: 0 additions & 11 deletions tests/fixtures/keyframe-selector-validation.css

This file was deleted.