haikuwebkit/LayoutTests/fast/dom/Attr/value-not-nullable.html

17 lines
487 B
HTML

<!DOCTYPE html>
<body>
<script src="../../../resources/js-test-pre.js"></script>
<script>
description("Tests that Attr.value is not nullable");
evalAndLog("attr = document.createAttribute('test')");
shouldBeEmptyString("attr.value");
shouldNotThrow("attr.value = null");
shouldBeEqualToString("attr.value", "null");
shouldNotThrow("attr.value = undefined");
shouldBeEqualToString("attr.value", "undefined");
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>