blob: a1bc95891956e6678c8ee2ecd51be7d6e94b70ca [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/">
<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>