Bug 67926

Summary: [Chromium/Win] fast/events/constructors/progress-event-constructor.html is failing
Product: WebKit Reporter: Fumitoshi Ukai <ukai>
Component: WebCore JavaScriptAssignee: Nobody <webkit-unassigned>
Status: RESOLVED WONTFIX    
Severity: Normal CC: barraclough, dominicc, haraken, heycam, schenney, syoichi
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 67824    

Fumitoshi Ukai
Reported 2011-09-12 01:04:32 PDT
fast/events/constructors/progress-event-constructor.html is failing on chromium/win http://test-results.appspot.com/dashboards/flakiness_dashboard.html#showExpectations=true&tests=fast%2Fevents%2Fconstructors%2Fprogress-event-constructor.html FAIL new ProgressEvent('eventType', { loaded: 12345678901234567890 }).loaded should be 12345678901234567000. Was 9223372036854776000. FAIL new ProgressEvent('eventType', { total: 12345678901234567890 }).total should be 12345678901234567000. Was 9223372036854776000. DIFF: Webkit Win --- e:\b\build\slave\Webkit_Win\build\layout-test-results\fast/events/constructors/progress-event-constructor-expected.txt +++ e:\b\build\slave\Webkit_Win\build\layout-test-results\fast/events/constructors/progress-event-constructor-actual.txt @@ -19,7 +19,7 @@ PASS new ProgressEvent('eventType', { loaded: 9007199254740990 }).loaded is 9007199254740990 PASS new ProgressEvent('eventType', { loaded: 9007199254740991 }).loaded is 9007199254740991 PASS new ProgressEvent('eventType', { loaded: 18446744073709551615 }).loaded is 0 -PASS new ProgressEvent('eventType', { loaded: 12345678901234567890 }).loaded is 12345678901234567168 +FAIL new ProgressEvent('eventType', { loaded: 12345678901234567890 }).loaded should be 12345678901234567000. Was 9223372036854776000. PASS new ProgressEvent('eventType', { loaded: -1 }).loaded is 18446744073709551615 PASS new ProgressEvent('eventType', { loaded: NaN }).loaded is 0 PASS new ProgressEvent('eventType', { loaded: 123.45 }).loaded is 123 @@ -40,7 +40,7 @@ PASS new ProgressEvent('eventType', { total: 9007199254740990 }).total is 9007199254740990 PASS new ProgressEvent('eventType', { total: 9007199254740991 }).total is 9007199254740991 PASS new ProgressEvent('eventType', { total: 18446744073709551615 }).total is 0 -PASS new ProgressEvent('eventType', { total: 12345678901234567890 }).total is 12345678901234567168 +FAIL new ProgressEvent('eventType', { total: 12345678901234567890 }).total should be 12345678901234567000. Was 9223372036854776000. PASS new ProgressEvent('eventType', { total: -1 }).total is 18446744073709551615 PASS new ProgressEvent('eventType', { total: NaN }).total is 0 PASS new ProgressEvent('eventType', { total: 123.45 }).total is 123
Attachments
Note You need to log in before you can comment on or make changes to this bug.