| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>GlobalEventHandlers test</title> | 2 <title>GlobalEventHandlers test</title> |
| 3 <script src="../../resources/testharness.js"></script> | 3 <script src="../../resources/testharness.js"></script> |
| 4 <script src="../../resources/testharnessreport.js"></script> | 4 <script src="../../resources/testharnessreport.js"></script> |
| 5 <script src="script-tests/event-handlers.js"></script> | 5 <script src="resources/event-handlers.js"></script> |
| 6 <script> | 6 <script> |
| 7 // attribute list from WHATWG HTML Living Standard r8389 | 7 // attribute list from WHATWG HTML Living Standard r8389 |
| 8 [ | 8 [ |
| 9 "onabort", | 9 "onabort", |
| 10 "onblur", | 10 "onblur", |
| 11 "oncancel", | 11 "oncancel", |
| 12 "oncanplay", | 12 "oncanplay", |
| 13 "oncanplaythrough", | 13 "oncanplaythrough", |
| 14 "onchange", | 14 "onchange", |
| 15 "onclick", | 15 "onclick", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 testSet("SVGElement", attribute); | 81 testSet("SVGElement", attribute); |
| 82 testEnumerate("SVGElement", attribute); | 82 testEnumerate("SVGElement", attribute); |
| 83 testReflect("SVGElement", attribute); | 83 testReflect("SVGElement", attribute); |
| 84 testSet("Document", attribute); | 84 testSet("Document", attribute); |
| 85 testEnumerate("Document", attribute); | 85 testEnumerate("Document", attribute); |
| 86 testSet("Window", attribute); | 86 testSet("Window", attribute); |
| 87 testEnumerate("Window", attribute); | 87 testEnumerate("Window", attribute); |
| 88 }); | 88 }); |
| 89 </script> | 89 </script> |
| 90 <div id="log"></div> | 90 <div id="log"></div> |
| OLD | NEW |