mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-08 18:11:52 +00:00
11 lines
257 B
HTML
11 lines
257 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let c = document.createElement("canvas");
|
|
c.width = 300;
|
|
c.height = 0;
|
|
c.toDataURL();
|
|
println("PASS (didn't crash!)");
|
|
});
|
|
</script>
|