mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-16 08:02:52 +00:00
Not every value in a StyleProperties will be non-null by the time we perform `revert`, so let's make a specialized function for reverting a property instead of using the path that requires the value to be non-null.
9 lines
160 B
HTML
9 lines
160 B
HTML
<style>
|
|
div { all: revert; }
|
|
</style>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|