Title: [141869] trunk/LayoutTests
Revision
141869
Author
[email protected]
Date
2013-02-05 01:05:33 -0800 (Tue, 05 Feb 2013)

Log Message

touch-event.html should check touchstartFiredInShadowDOM is true.
https://bugs.webkit.org/show_bug.cgi?id=108910

Reviewed by Hajime Morita.

We have to check touchstartFiredInShadowDOM is true so that we can assure touch event is in ShadowDOM.
This is a follow-up patch for http://trac.webkit.org/changeset/141054

* fast/dom/shadow/touch-event-expected.txt:
* fast/dom/shadow/touch-event.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (141868 => 141869)


--- trunk/LayoutTests/ChangeLog	2013-02-05 08:55:44 UTC (rev 141868)
+++ trunk/LayoutTests/ChangeLog	2013-02-05 09:05:33 UTC (rev 141869)
@@ -1,3 +1,16 @@
+2013-02-05  Shinya Kawanaka  <[email protected]>
+
+        touch-event.html should check touchstartFiredInShadowDOM is true.
+        https://bugs.webkit.org/show_bug.cgi?id=108910
+
+        Reviewed by Hajime Morita.
+
+        We have to check touchstartFiredInShadowDOM is true so that we can assure touch event is in ShadowDOM.
+        This is a follow-up patch for http://trac.webkit.org/changeset/141054
+
+        * fast/dom/shadow/touch-event-expected.txt:
+        * fast/dom/shadow/touch-event.html:
+
 2013-02-05  Praveen Jadhav  <[email protected]>
 
         Floating point precision error in AudioPannerNode.

Modified: trunk/LayoutTests/fast/dom/shadow/touch-event-expected.txt (141868 => 141869)


--- trunk/LayoutTests/fast/dom/shadow/touch-event-expected.txt	2013-02-05 08:55:44 UTC (rev 141868)
+++ trunk/LayoutTests/fast/dom/shadow/touch-event-expected.txt	2013-02-05 09:05:33 UTC (rev 141869)
@@ -2,6 +2,7 @@
 
 Elements in ShadowDOM should not be revealed in touchTarget if it's examined in non shadow tree.
 
+PASS touchstartFiredInShadowDOM is true
 PASS touchTargetForHost1 is host1
 PASS touchTargetForInput1 is input1
 PASS successfullyParsed is true

Modified: trunk/LayoutTests/fast/dom/shadow/touch-event.html (141868 => 141869)


--- trunk/LayoutTests/fast/dom/shadow/touch-event.html	2013-02-05 08:55:44 UTC (rev 141868)
+++ trunk/LayoutTests/fast/dom/shadow/touch-event.html	2013-02-05 09:05:33 UTC (rev 141869)
@@ -42,6 +42,7 @@
 eventSender.touchStart();
 eventSender.touchEnd();
 
+shouldBeTrue('touchstartFiredInShadowDOM');
 shouldBe('touchTargetForHost1', 'host1');
 shouldBe('touchTargetForInput1', 'input1');
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to