Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/the-object-element/object-setcustomvalidity.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<title>object setCustomValidity</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<object id='object_test'></object>
<script>
test(() => {
let elem = document.getElementById("object_test");
assert_false(elem.validity.customError);
elem.setCustomValidity("custom error");
assert_true(elem.validity.customError);
}, "object setCustomValidity is correct")
</script>