Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <script src="../resources/testharness.js"></script> | |
| 3 <script src="../resources/testharnessreport.js"></script> | |
| 4 <body> | |
| 5 <object type="image/test" data="hello" id="object1" onerror="errorHandler()"> | |
| 6 </object> | |
| 7 <script> | |
| 8 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.
| |
| 9 " for <object> elements"); | |
| 10 function errorHandler() { | |
| 11 testobject.done(); | |
| 12 }; | |
| 13 </script> | |
| 14 </body> | |
| 15 </html> | |
| OLD | NEW |