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