mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
14 lines
327 B
HTML
14 lines
327 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let threw = false;
|
|
try {
|
|
document.body.dataset["=foo"] = "foo";
|
|
} catch {
|
|
threw = true;
|
|
}
|
|
println("Setting DOMStringMap with an invalid name key throws? " + threw);
|
|
});
|
|
</script>
|