Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: third_party/WebKit/LayoutTests/plugins/object-onload-placeholder.html

Issue 2733083004: Emit error events if the loading of an object element failed (Closed)
Patch Set: Emit error events if the loading of an object element failed Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <body>
5 <object type="image/gif" data="resources/apple.gif" onload="loadHandler()">
6 </object>
7 <script>
8 var testobject = async_test("crbug.com/445557:error events aren't dispatched" +
9 " for <object> elements");
10 function loadHandler() {
11 testobject.done();
Bernhard Bauer 2017/04/13 15:48:42 Can you add an error handler that fails the test?
George Joseph 2017/04/16 18:22:29 Done.
12 }
13 </script>
14 </body>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698