<?php
require __DIR__ . '/vendor/autoload.php';
use Sabberworm\CSS\Parser;
use Sabberworm\CSS\Settings;
$css = '.a { animation-timeline: view(); opacity: 0.5; }';
// Lenient: the declaration disappears.
echo (new Parser($css, Settings::create()->withLenientParsing()))->parse()->render(), "\n";
// Strict: throws.
echo (new Parser($css, Settings::create()->withLenientParsing(false)))->parse()->render(), "\n";
Steps to reproduce
Actual
Expected