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..b1509e5acd22119401194c5c9928a53ff9e0e8ba |
| --- /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"+ |
|
Bernhard Bauer
2017/03/28 10:55:59
Nit: Spaces around the plus sign (which means you
George Joseph
2017/03/30 08:41:44
Done.
|
| +" for <object> elements"); |
| +function errorHandler() { |
| + testobject.done(); |
| +}; |
| +</script> |
| +</body> |
| +</html> |