Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /webmcp/imperative/model_context.https.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>WebMCP modelContext interface</title>
<link rel="author" href="mailto:dom@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
test(() => {
assert_true(document.modelContext instanceof ModelContext);
}, 'document.modelContext instanceof ModelContext');
test(() => {
assert_equals(document.modelContext, document.modelContext);
}, 'document.modelContext SameObject');
</script>
</body>
</html>