mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
14 lines
310 B
HTML
14 lines
310 B
HTML
<!DOCTYPE html>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const canvas = document.createElement("canvas");
|
|
const ctx = canvas.getContext("2d");
|
|
|
|
canvas.setAttribute("width", "0");
|
|
canvas.toDataURL();
|
|
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|