Bug 136226 - [EFL] fast/events/constructors/mouse-event-constructor.html and fast/events/constructors/wheel-event-constructor.html are failing
Summary: [EFL] fast/events/constructors/mouse-event-constructor.html and fast/events/c...
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit EFL (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-08-25 07:31 PDT by Michal Pakula vel Rutka
Modified: 2017-03-11 10:37 PST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michal Pakula vel Rutka 2014-08-25 07:31:32 PDT
Layout tests fast/events/constructors/mouse-event-constructor.html and fast/events/constructors/wheel-event-constructor.html are failing since r172835 <http://trac.webkit.org/changeset/172835>

http://webkit-test-results.appspot.com/dashboards/flakiness_dashboard.html#showAllRuns=true&tests=fast%2Fevents%2Fconstructors%2Fmouse-event-constructor.html
http://webkit-test-results.appspot.com/dashboards/flakiness_dashboard.html#showAllRuns=true&tests=fast%2Fevents%2Fconstructors%2Fwheel-event-constructor.html

Test diff:
@@ -101,9 +101,9 @@
 PASS new MouseEvent('eventType', { screenY: {moemoe: 12345} }).screenY is 0
 PASS new MouseEvent('eventType', { screenY: {valueOf: function () { return 12345; }} }).screenY is 12345
 PASS new MouseEvent('eventType', { clientX: 0 }).clientX is 0
-FAIL new MouseEvent('eventType', { clientX: 2147483647 }).clientX should be 2147483647. Was -1.
+FAIL new MouseEvent('eventType', { clientX: 2147483647 }).clientX should be 2147483647. Was 33554431.
 PASS new MouseEvent('eventType', { clientX: -1 }).clientX is -1
-FAIL new MouseEvent('eventType', { clientX: -2147483648 }).clientX should be -2147483648. Was 0.
+FAIL new MouseEvent('eventType', { clientX: -2147483648 }).clientX should be -2147483648. Was -33554432.
 PASS new MouseEvent('eventType', { clientX: 4294967295 }).clientX is -1
 PASS new MouseEvent('eventType', { clientX: 9007199254740991 }).clientX is -1
 PASS new MouseEvent('eventType', { clientX: 18446744073709551615 }).clientX is 0
@@ -122,9 +122,9 @@
 PASS new MouseEvent('eventType', { clientX: {moemoe: 12345} }).clientX is 0
 PASS new MouseEvent('eventType', { clientX: {valueOf: function () { return 12345; }} }).clientX is 12345
 PASS new MouseEvent('eventType', { clientY: 0 }).clientY is 0
-FAIL new MouseEvent('eventType', { clientY: 2147483647 }).clientY should be 2147483647. Was -1.
+FAIL new MouseEvent('eventType', { clientY: 2147483647 }).clientY should be 2147483647. Was 33554431.
 PASS new MouseEvent('eventType', { clientY: -1 }).clientY is -1
-FAIL new MouseEvent('eventType', { clientY: -2147483648 }).clientY should be -2147483648. Was 0.
+FAIL new MouseEvent('eventType', { clientY: -2147483648 }).clientY should be -2147483648. Was -33554432.
 PASS new MouseEvent('eventType', { clientY: 4294967295 }).clientY is -1
 PASS new MouseEvent('eventType', { clientY: 9007199254740991 }).clientY is -1
 PASS new MouseEvent('eventType', { clientY: 18446744073709551615 }).clientY is 0
Comment 1 Michael Catanzaro 2017-03-11 10:37:44 PST
Closing this bug because the EFL port has been removed from trunk.

If you feel this bug applies to a different upstream WebKit port and was closed in error, please either update the title and reopen the bug, or leave a comment to request this.