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