| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title> Event dispatch and DOM event flow </title> | 4 <title> Event dispatch and DOM event flow </title> |
| 5 <script src="../../../../../resources/testharness.js"></script> | 5 <script src="../../../../../resources/testharness.js"></script> |
| 6 <script src="../../../../../resources/testharnessreport.js"></script> | 6 <script src="../../../../../resources/testharnessreport.js"></script> |
| 7 </head> | 7 </head> |
| 8 <body> | 8 <body> |
| 9 <div id=log></div> | 9 <div id=log></div> |
| 10 | 10 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 }, description); | 55 }, description); |
| 56 | 56 |
| 57 function TestEvent(evt) | 57 function TestEvent(evt) |
| 58 { | 58 { |
| 59 ActualResult.push(evt.currentTarget); | 59 ActualResult.push(evt.currentTarget); |
| 60 ActualPhases.push(evt.eventPhase); | 60 ActualPhases.push(evt.eventPhase); |
| 61 } | 61 } |
| 62 </script> | 62 </script> |
| 63 </body> | 63 </body> |
| 64 </html> | 64 </html> |
| OLD | NEW |