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..eb182e5e41f5145829fc61ee39bd2ef8c704fc52 |
| --- /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> |
|
Bernhard Bauer
2017/03/31 09:25:20
This line should be indented four spaces (similar
George Joseph
2017/04/03 00:22:34
Done.
|
| +<script> |
| +var testobject = async_test("crbug.com/445557:error events" |
|
Bernhard Bauer
2017/03/31 09:25:20
This seems like it's shorter than 80 characters no
George Joseph
2017/04/03 00:22:34
Done.
|
| ++ "aren't dispatched for <object> elements"); |
| +function errorHandler() { |
| + testobject.done(); |
| +}; |
| +</script> |
| +</body> |
| +</html> |