mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
14 lines
307 B
HTML
14 lines
307 B
HTML
<!doctype html>
|
|
<div id="target"></div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
try {
|
|
target.attributeStyleMap.set("width", new CSSUnparsedValue(["var(,)"]));
|
|
println("FAIL");
|
|
} catch {
|
|
println("PASS");
|
|
}
|
|
});
|
|
</script>
|