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