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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/touch/basic-single-touch-events-expected.txt

Issue 2501293002: Update a test to verify that Touch Events are composed events (Closed)
Patch Set: add a expected txt Created 4 years, 1 month 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: third_party/WebKit/LayoutTests/fast/events/touch/basic-single-touch-events-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/events/touch/basic-single-touch-events-expected.txt b/third_party/WebKit/LayoutTests/fast/events/touch/basic-single-touch-events-expected.txt
index 41ecf0faf3cfd80b863923e316df6f0520ed68de..970ba77815cfb9d57e2e18dd5412428b42e13274 100644
--- a/third_party/WebKit/LayoutTests/fast/events/touch/basic-single-touch-events-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/events/touch/basic-single-touch-events-expected.txt
@@ -7,6 +7,7 @@ PASS lastEvent.type is "touchstart"
PASS lastEvent.touches.length is 1
PASS lastEvent.changedTouches.length is 1
PASS lastEvent.targetTouches.length is 1
+PASS lastEvent.composed is true
PASS lastEvent.shiftKey is false
PASS lastEvent.touches[0].target.id is "touchtarget"
PASS lastEvent.touches[0].pageX is 10
@@ -28,6 +29,7 @@ PASS lastEvent.type is "touchmove"
PASS lastEvent.touches.length is 1
PASS lastEvent.changedTouches.length is 1
PASS lastEvent.targetTouches.length is 1
+PASS lastEvent.composed is true
PASS lastEvent.touches[0].pageX is 50
PASS lastEvent.touches[0].pageY is 50
PASS lastEvent.touches[0].clientX is 50
@@ -41,6 +43,7 @@ PASS lastEvent.type is "touchend"
PASS lastEvent.touches.length is 0
PASS lastEvent.changedTouches.length is 1
PASS lastEvent.targetTouches.length is 0
+PASS lastEvent.composed is true
PASS lastEvent.changedTouches[0].pageX is 50
PASS lastEvent.changedTouches[0].pageY is 50
PASS lastEvent.changedTouches[0].clientX is 50
@@ -52,11 +55,13 @@ PASS lastEvent.type is "touchstart"
PASS lastEvent.touches.length is 1
PASS lastEvent.changedTouches.length is 1
PASS lastEvent.targetTouches.length is 1
+PASS lastEvent.composed is true
PASS lastEvent.targetTouches[0].target.tagName is "DIV"
PASS lastEvent.type is "touchmove"
PASS lastEvent.touches.length is 1
PASS lastEvent.changedTouches.length is 1
PASS lastEvent.targetTouches.length is 1
+PASS lastEvent.composed is true
PASS lastEvent.touches[0].target.tagName is "DIV"
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698