mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
16 lines
373 B
HTML
16 lines
373 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Harness Handling Uncaught Exception</title>
|
|
</head>
|
|
<script src="../testharness.js"></script>
|
|
|
|
<body>
|
|
<h1>Harness Handling Uncaught Exception</h1>
|
|
<div id="log"></div>
|
|
<script>
|
|
var t = async_test("This should show a harness status of 'Error' and a test status of 'Not Run'");
|
|
throw new Error("Example Error");
|
|
</script>
|
|
</body>
|
|
</html>
|