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

Unified Diff: LayoutTests/fast/events/touch/script-tests/document-create-touch-list.js

Issue 11970016: Merge 138808 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/events/touch/script-tests/document-create-touch-list.js
===================================================================
--- LayoutTests/fast/events/touch/script-tests/document-create-touch-list.js (revision 139896)
+++ LayoutTests/fast/events/touch/script-tests/document-create-touch-list.js (working copy)
@@ -21,10 +21,7 @@
document.body.addEventListener("touchstart", function handleTouchStart(ev) {
ts = ev;
- shouldBeTrue("ts instanceof TouchEvent");
- shouldBeTrue("ts.touches instanceof TouchList");
shouldBe("ts.touches.length", "2");
- shouldBeTrue("ts.touches[0] instanceof Touch");
shouldBe("ts.touches[0].identifier", "12341");
shouldBe("ts.touches[0].clientX", "60");
shouldBe("ts.touches[1].screenY", "120");

Powered by Google App Engine
This is Rietveld 408576698