Bug 136226
Summary: | [EFL] fast/events/constructors/mouse-event-constructor.html and fast/events/constructors/wheel-event-constructor.html are failing | ||
---|---|---|---|
Product: | WebKit | Reporter: | Michal Pakula vel Rutka <mpakulavelrutka> |
Component: | WebKit EFL | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED WONTFIX | ||
Severity: | Normal | CC: | lucas.de.marchi, mcatanzaro |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Unspecified | ||
OS: | Unspecified |
Michal Pakula vel Rutka
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
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Michael Catanzaro
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.