Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | |
| 2 <html> | |
| 3 <head> | |
|
Rick Byers
2015/06/11 03:34:12
nit: coding style says to omit unnecessary tags li
lanwei
2015/06/15 18:22:01
Done.
| |
| 4 <script src="../../../resources/js-test.js"></script> | |
| 5 </head> | |
| 6 <body> | |
| 7 <p id="description"></p> | |
| 8 <div id="console"></div> | |
| 9 <script type="text/javascript"> | |
| 10 description('Test that touch events should have a sourceDevice set to null when creating from Javascript.'); | |
| 11 | |
| 12 var event = document.createEvent("TouchEvent"); | |
| 13 shouldBeNonNull("event"); | |
| 14 shouldBeNull("event.sourceDevice"); | |
|
Rick Byers
2015/06/11 03:34:12
this is a pretty trivial test case - may be simple
lanwei
2015/06/15 18:22:01
Done.
| |
| 15 | |
| 16 </script> | |
| 17 </body> | |
| 18 </html> | |
| OLD | NEW |