servo/tests/wpt/web-platform-tests/infrastructure/expected-fail/precondition-in-promise.html

10 lines
255 B
HTML

<!DOCTYPE html>
<meta charset=utf-8>
<title>Precondition in promise</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
new Promise(() => {
assert_precondition(false);
});
</script>