| 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..42765ae3fae23224dbbcc85811847846ad6561e5
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/plugins/object-onerror-placeholder.html
|
| @@ -0,0 +1,14 @@
|
| +<html>
|
| +<script src="../resources/testharness.js"></script>
|
| +<script src="../resources/testharnessreport.js"></script>
|
| +<body>
|
| +<object style="visibility: hidden" type="image/testabcd" data="hello" id="object1" ></embed>
|
| +<script>
|
| +var testobject = async_test("crbug.com/445557 : error events aren't dispatched for <object> elements");
|
| +document.getElementById('object1').onerror=function ()
|
| +{
|
| + testobject.done();
|
| +};
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|