mirror of
https://github.com/servo/servo.git
synced 2025-10-17 16:59:27 +01:00
10 lines
247 B
HTML
10 lines
247 B
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<title>Precondition in setup</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
setup(() => {
|
|
assert_precondition(false);
|
|
});
|
|
</script>
|