Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/touch-events/historical.html

Issue 1985353002: Move the touch-events directory from web-platform-tests/ to wpt/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698