Diff
Modified: trunk/LayoutTests/ChangeLog (171816 => 171817)
--- trunk/LayoutTests/ChangeLog 2014-07-30 21:03:31 UTC (rev 171816)
+++ trunk/LayoutTests/ChangeLog 2014-07-30 21:28:03 UTC (rev 171817)
@@ -1,3 +1,10 @@
+2014-07-30 Pratik Solanki <[email protected]>
+
+ Move iphone-simulator test results landed in r171094 to the correct directory.
+
+ * platform/ios-sim/fast/events/ontouchstart-active-selector-expected.txt: Renamed from LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector-expected.txt.
+ * platform/ios-sim/fast/events/ontouchstart-active-selector.html: Renamed from LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector.html.
+
2014-07-29 Jinwoo Song <[email protected]>
[EFL] Unreviewed EFL gardening. Rebaseline tests after r170418.
Copied: trunk/LayoutTests/platform/ios-sim/fast/events/ontouchstart-active-selector-expected.txt (from rev 171816, trunk/LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector-expected.txt) (0 => 171817)
--- trunk/LayoutTests/platform/ios-sim/fast/events/ontouchstart-active-selector-expected.txt (rev 0)
+++ trunk/LayoutTests/platform/ios-sim/fast/events/ontouchstart-active-selector-expected.txt 2014-07-30 21:28:03 UTC (rev 171817)
@@ -0,0 +1,12 @@
+This tests the :active selector on touchable elements
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS getComputedStyle(touchMe).backgroundColor is 'rgb(0, 0, 255)'
+PASS getComputedStyle(touchMe).backgroundColor is 'rgb(255, 255, 0)'
+PASS getComputedStyle(touchMe).backgroundColor is 'rgb(0, 0, 255)'
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
Copied: trunk/LayoutTests/platform/ios-sim/fast/events/ontouchstart-active-selector.html (from rev 171816, trunk/LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector.html) (0 => 171817)
--- trunk/LayoutTests/platform/ios-sim/fast/events/ontouchstart-active-selector.html (rev 0)
+++ trunk/LayoutTests/platform/ios-sim/fast/events/ontouchstart-active-selector.html 2014-07-30 21:28:03 UTC (rev 171817)
@@ -0,0 +1,50 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script src=""
+
+<style>
+ #touchMe {
+ background-color: blue;
+ width: 200px;
+ height: 200px;
+ top: 0;
+ left: 0;
+ }
+ #touchMe:active {
+ background-color: yellow;
+ }
+</style>
+</head>
+<body>
+<div id="touchMe" _ontouchstart_=""></div>
+<script>
+
+description("This tests the :active selector on touchable elements");
+
+if (!window.eventSender)
+ debug("This test will FAIL outside of DRT, but you can test it manually by touching the blue square below. If it turns yellow when touched, the test is a PASS.");
+
+touchMe = document.getElementById("touchMe");
+
+shouldBe("getComputedStyle(touchMe).backgroundColor", "'rgb(0, 0, 255)'");
+
+if (window.eventSender) {
+ eventSender.clearTouchPoints();
+ eventSender.addTouchPoint(touchMe.offsetLeft + 10, touchMe.offsetTop + 10);
+ eventSender.touchStart();
+}
+
+shouldBe("getComputedStyle(touchMe).backgroundColor", "'rgb(255, 255, 0)'");
+
+if (window.eventSender) {
+ eventSender.clearTouchPoints();
+ eventSender.touchEnd();
+}
+
+shouldBe("getComputedStyle(touchMe).backgroundColor", "'rgb(0, 0, 255)'");
+
+</script>
+<script src=""
+</body>
+</html>
Deleted: trunk/LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector-expected.txt (171816 => 171817)
--- trunk/LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector-expected.txt 2014-07-30 21:03:31 UTC (rev 171816)
+++ trunk/LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector-expected.txt 2014-07-30 21:28:03 UTC (rev 171817)
@@ -1,12 +0,0 @@
-This tests the :active selector on touchable elements
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS getComputedStyle(touchMe).backgroundColor is 'rgb(0, 0, 255)'
-PASS getComputedStyle(touchMe).backgroundColor is 'rgb(255, 255, 0)'
-PASS getComputedStyle(touchMe).backgroundColor is 'rgb(0, 0, 255)'
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
Deleted: trunk/LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector.html (171816 => 171817)
--- trunk/LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector.html 2014-07-30 21:03:31 UTC (rev 171816)
+++ trunk/LayoutTests/platform/iphone-simulator/fast/events/ontouchstart-active-selector.html 2014-07-30 21:28:03 UTC (rev 171817)
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src=""
-
-<style>
- #touchMe {
- background-color: blue;
- width: 200px;
- height: 200px;
- top: 0;
- left: 0;
- }
- #touchMe:active {
- background-color: yellow;
- }
-</style>
-</head>
-<body>
-<div id="touchMe" _ontouchstart_=""></div>
-<script>
-
-description("This tests the :active selector on touchable elements");
-
-if (!window.eventSender)
- debug("This test will FAIL outside of DRT, but you can test it manually by touching the blue square below. If it turns yellow when touched, the test is a PASS.");
-
-touchMe = document.getElementById("touchMe");
-
-shouldBe("getComputedStyle(touchMe).backgroundColor", "'rgb(0, 0, 255)'");
-
-if (window.eventSender) {
- eventSender.clearTouchPoints();
- eventSender.addTouchPoint(touchMe.offsetLeft + 10, touchMe.offsetTop + 10);
- eventSender.touchStart();
-}
-
-shouldBe("getComputedStyle(touchMe).backgroundColor", "'rgb(255, 255, 0)'");
-
-if (window.eventSender) {
- eventSender.clearTouchPoints();
- eventSender.touchEnd();
-}
-
-shouldBe("getComputedStyle(touchMe).backgroundColor", "'rgb(0, 0, 255)'");
-
-</script>
-<script src=""
-</body>
-</html>