mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
Also resolves the `revert` keyword against longhand properties rather than potential shorthands as this could cause a crash. Gains us 20 WPT tests.
8 lines
151 B
HTML
8 lines
151 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<div id="foo"></div>
|
|
<script>
|
|
foo.animate([{ margin: "revert" }, { margin: "0" }], 1000);
|
|
</script>
|
|
</html>
|