Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE html>
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=scope></div>
<script>
test(() => {
const element = document.querySelector("#scope");
const transition = element.startViewTransition(() => {});
assert_true(transition instanceof ViewTransition);
});
</script>
</body>
</html>