| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 #inert-div { | 5 #inert-div { |
| 6 height: 100px; | 6 height: 100px; |
| 7 width: 100px; | 7 width: 100px; |
| 8 background: blue; | 8 background: blue; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 debug('Clicking on inert box'); | 94 debug('Clicking on inert box'); |
| 95 clickOn(inertDiv); | 95 clickOn(inertDiv); |
| 96 shouldBeFalse('inertDiv.firedOn'); | 96 shouldBeFalse('inertDiv.firedOn'); |
| 97 shouldBe('Object.keys(body.firedOnEvents).length', 'events.length'); | 97 shouldBe('Object.keys(body.firedOnEvents).length', 'events.length'); |
| 98 | 98 |
| 99 debug('Clicking on non-inert box'); | 99 debug('Clicking on non-inert box'); |
| 100 clickOn(dialogDiv); | 100 clickOn(dialogDiv); |
| 101 shouldBeFalse('inertDiv.firedOn'); | 101 shouldBeFalse('inertDiv.firedOn'); |
| 102 shouldBe('Object.keys(dialogDiv.firedOnEvents).length', 'events.length'); | 102 shouldBe('Object.keys(dialogDiv.firedOnEvents).length', 'events.length'); |
| 103 </script> | 103 </script> |
| 104 <script src="../../js/resources/js-test-post.js"></script> | |
| 105 </body> | 104 </body> |
| 106 </html> | 105 </html> |
| OLD | NEW |