mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
15 lines
317 B
HTML
15 lines
317 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
try {
|
|
new DOMMatrix("var(--a)");
|
|
println("Fail! Should throw error");
|
|
} catch {
|
|
println("Pass!");
|
|
}
|
|
});
|
|
</script>
|
|
</html>
|