| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <p id="description"></p> | 7 <p id="description"></p> |
| 8 <div id="sandbox"> | 8 <div id="sandbox"> |
| 9 <details open id="details" style="height: 200px"> | 9 <details open id="details" style="height: 200px"> |
| 10 <summary id="summary">summary</summary> | 10 <summary id="summary">summary</summary> |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 shouldBe('dispatchedEvent("mouseover")', '["details(<-summary)(@details)", "
details(<-summary)(@sandbox)"]'); | 83 shouldBe('dispatchedEvent("mouseover")', '["details(<-summary)(@details)", "
details(<-summary)(@sandbox)"]'); |
| 84 shouldBe('dispatchedEvent("mouseout")', '["summary(<-details)(@summary)", "s
ummary(<-details)(@details)", "summary(<-details)(@sandbox)"]'); | 84 shouldBe('dispatchedEvent("mouseout")', '["summary(<-details)(@summary)", "s
ummary(<-details)(@details)", "summary(<-details)(@sandbox)"]'); |
| 85 | 85 |
| 86 moveMouse('details', 'summary'); | 86 moveMouse('details', 'summary'); |
| 87 shouldBe('dispatchedEvent("mouseover")', '["summary(<-details)(@summary)", "
summary(<-details)(@details)", "summary(<-details)(@sandbox)"]'); | 87 shouldBe('dispatchedEvent("mouseover")', '["summary(<-details)(@summary)", "
summary(<-details)(@details)", "summary(<-details)(@sandbox)"]'); |
| 88 shouldBe('dispatchedEvent("mouseout")', '["details(<-summary)(@details)", "d
etails(<-summary)(@sandbox)"]'); | 88 shouldBe('dispatchedEvent("mouseout")', '["details(<-summary)(@details)", "d
etails(<-summary)(@sandbox)"]'); |
| 89 } | 89 } |
| 90 | 90 |
| 91 test(); | 91 test(); |
| 92 </script> | 92 </script> |
| 93 <script src="../../js/resources/js-test-post.js"></script> | |
| 94 </body> | 93 </body> |
| 95 </html> | 94 </html> |
| OLD | NEW |