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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/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
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698