Title: [166543] trunk/LayoutTests
- Revision
- 166543
- Author
- [email protected]
- Date
- 2014-03-31 16:23:43 -0700 (Mon, 31 Mar 2014)
Log Message
Unreviewed, rolling out r166536.
https://bugs.webkit.org/show_bug.cgi?id=130993
This is not the correct fix. (Requested by bfulgham on
#webkit).
Reverted changeset:
"Unreviewed test fix after r166530."
http://trac.webkit.org/changeset/166536
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (166542 => 166543)
--- trunk/LayoutTests/ChangeLog 2014-03-31 23:15:58 UTC (rev 166542)
+++ trunk/LayoutTests/ChangeLog 2014-03-31 23:23:43 UTC (rev 166543)
@@ -1,3 +1,16 @@
+2014-03-31 Commit Queue <[email protected]>
+
+ Unreviewed, rolling out r166536.
+ https://bugs.webkit.org/show_bug.cgi?id=130993
+
+ This is not the correct fix. (Requested by bfulgham on
+ #webkit).
+
+ Reverted changeset:
+
+ "Unreviewed test fix after r166530."
+ http://trac.webkit.org/changeset/166536
+
2014-03-31 Brent Fulgham <[email protected]>
Unreviewed test fix after r166530.
Modified: trunk/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div-expected.txt (166542 => 166543)
--- trunk/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div-expected.txt 2014-03-31 23:15:58 UTC (rev 166542)
+++ trunk/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div-expected.txt 2014-03-31 23:23:43 UTC (rev 166543)
@@ -1,6 +1,6 @@
-PASS event.wheelDeltaY is window.expectedScrollTop*-30
-PASS event.wheelDeltaX is window.expectedScrollLeft*-30
-PASS event.wheelDelta is window.expectedScrollTop*-30
+PASS event.wheelDeltaY is window.expectedScrollTop*-120
+PASS event.wheelDeltaX is window.expectedScrollLeft*-120
+PASS event.wheelDelta is window.expectedScrollTop*-120
PASS div.scrollTop is window.expectedScrollTop*window.pixelsPerWheelTick
PASS div.scrollLeft is window.expectedScrollLeft*window.pixelsPerWheelTick
Modified: trunk/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div.html (166542 => 166543)
--- trunk/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div.html 2014-03-31 23:15:58 UTC (rev 166542)
+++ trunk/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div.html 2014-03-31 23:23:43 UTC (rev 166543)
@@ -4,7 +4,7 @@
<script>
var expectedScrollTop = 5;
var expectedScrollLeft = 3;
- var pixelsPerWheelTick = 10;
+ var pixelsPerWheelTick = 40;
var event;
var div;
@@ -38,13 +38,13 @@
function mousewheelHandler(e)
{
event = e;
- shouldBe("event.wheelDeltaY", "window.expectedScrollTop*-30");
- shouldBe("event.wheelDeltaX", "window.expectedScrollLeft*-30");
+ shouldBe("event.wheelDeltaY", "window.expectedScrollTop*-120");
+ shouldBe("event.wheelDeltaX", "window.expectedScrollLeft*-120");
if (e.wheelDeltaY)
- shouldBe("event.wheelDelta", "window.expectedScrollTop*-30");
+ shouldBe("event.wheelDelta", "window.expectedScrollTop*-120");
else
- shouldBe("event.wheelDelta", "window.expectedScrollLeft*-30");
+ shouldBe("event.wheelDelta", "window.expectedScrollLeft*-120");
}
</script>
</head>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes