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

Unified Diff: LayoutTests/fast/events/touch/multi-touch-inside-nested-iframes-expected.txt

Issue 259413003: Correctly handle touch events that contain touches not previously reported to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rjkroege cr Created 6 years, 8 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/multi-touch-inside-nested-iframes-expected.txt
diff --git a/LayoutTests/fast/events/touch/multi-touch-inside-nested-iframes-expected.txt b/LayoutTests/fast/events/touch/multi-touch-inside-nested-iframes-expected.txt
index f34b8bc861701590e20133a082b1e3b6d56fb0c0..088f0ed874f37a0f7255f973080f345ed6f5e169 100644
--- a/LayoutTests/fast/events/touch/multi-touch-inside-nested-iframes-expected.txt
+++ b/LayoutTests/fast/events/touch/multi-touch-inside-nested-iframes-expected.txt
@@ -25,21 +25,27 @@ Moves the first touch outside inner iframe.
PASS ev.type is "touchmove"
PASS touchreceiver is "iframe1"
PASS ev.changedTouches.length is 1
-PASS ev.touches.length is 1
+PASS ev.touches.length is 2
PASS ev.targetTouches.length is 1
PASS ev.touches[0].pageX is 200
PASS ev.touches[0].pageY is 200
PASS ev.touches[0].target.ownerDocument.title is "iframe1"
PASS ev.changedTouches[0].target.ownerDocument.title is "iframe1"
PASS ev.targetTouches[0].target.ownerDocument.title is "iframe1"
+PASS ev.touches[1].target.nodeName is "#document"
+PASS ev.touches[1].target.title is "iframe1"
Release the first touch.
PASS ev.type is "touchend"
PASS touchreceiver is "iframe1"
PASS ev.changedTouches.length is 1
-PASS ev.touches.length is 0
+PASS ev.touches.length is 1
PASS ev.targetTouches.length is 0
+PASS ev.changedTouches[0].identifier is 0
PASS ev.changedTouches[0].target.ownerDocument.title is "iframe1"
+PASS ev.touches[0].identifier is 1
+PASS ev.touches[0].target.nodeName is "#document"
+PASS ev.touches[0].target.title is "iframe1"
Third touch is on outer iframe, nothing should happen.

Powered by Google App Engine
This is Rietveld 408576698