mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-16 16:12:53 +00:00
This test checks the case, where an unknown pseudo element is used as second argument to getComputedStyle
7 lines
194 B
HTML
7 lines
194 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
getComputedStyle(document.body, "::-webkit-scrollbar").display;
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|