mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
Writing to this variable triggered a stack use after return ASAN error. This variable is safe to remove since it was written to but never read.
6 lines
137 B
HTML
6 lines
137 B
HTML
<!DOCTYPE html>
|
|
<video></video>
|
|
<script>
|
|
document.querySelector("video").srcObject = new Blob([], { type: "video/webm" });
|
|
</script>
|