Bug 67926 - [Chromium/Win] fast/events/constructors/progress-event-constructor.html is failing
Summary: [Chromium/Win] fast/events/constructors/progress-event-constructor.html is fa...
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore JavaScript (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks: 67824
  Show dependency treegraph
 
Reported: 2011-09-12 01:04 PDT by Fumitoshi Ukai
Modified: 2013-04-08 14:33 PDT (History)
6 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Fumitoshi Ukai 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