| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML> | |
| 2 <meta charset=utf-8> | |
| 3 <title>Historical touch events features</title> | |
| 4 <script src="../../../resources/testharness.js"></script> | |
| 5 <script src="../../../resources/testharnessreport.js"></script> | |
| 6 <script src="touch-support.js"></script> | |
| 7 <body> | |
| 8 <script> | |
| 9 test(function() { | |
| 10 assert_false("identifiedTouch" in TouchList.prototype, | |
| 11 "Should not be supported on the prototype"); | |
| 12 | |
| 13 var touchList = document.createTouchList(); | |
| 14 assert_false("identifiedTouch" in touchList, | |
| 15 "Should not be supported on the instance"); | |
| 16 }, "TouchList::identifiedTouch"); | |
| 17 </script> | |
| OLD | NEW |