Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/plugins/object-onerror-placeholder.html |
| diff --git a/third_party/WebKit/LayoutTests/plugins/object-onerror-placeholder.html b/third_party/WebKit/LayoutTests/plugins/object-onerror-placeholder.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ffc1fc3b68619f340ca5cd55c32e23d1d38806e8 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/plugins/object-onerror-placeholder.html |
| @@ -0,0 +1,15 @@ |
| +<html> |
| +<script src="../resources/testharness.js"></script> |
| +<script src="../resources/testharnessreport.js"></script> |
| +<body> |
| +<object type="image/test" data="hello" id="object1" onerror="errorHandler()"> |
| +</object> |
| +<script> |
| +var testobject = async_test("crbug.com/445557:error events aren't dispatched" + |
| + " for <object> elements"); |
|
Bernhard Bauer
2017/04/05 09:56:20
_Four_ characters please :) (Right now it's three
George Joseph
2017/04/09 00:41:37
Done.
|
| +function errorHandler() { |
| + testobject.done(); |
| +}; |
| +</script> |
| +</body> |
| +</html> |