https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e79e440e2b25551d21149ef336ab06ea16c43fdc authored by Anne van Kesteren on 03 April 2018, 13:01:37 UTC
missed one
Tip revision: e79e440
failing-test.html
<!DOCTYPE html>
<meta charset=utf-8>
<title>Failing test</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(function() {
  assert_unreached("Expected failure");
});
</script>
back to top