Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Unified Diff: LayoutTests/platform/linux/fast/events/constructors/progress-event-constructor-expected.txt

Issue 177353008: Rebaseline fast/events/constructors/progress-event-constructor.html after VS2013 switch (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/platform/linux/fast/events/constructors/progress-event-constructor-expected.txt
diff --git a/LayoutTests/platform/linux/fast/events/constructors/progress-event-constructor-expected.txt b/LayoutTests/platform/linux/fast/events/constructors/progress-event-constructor-expected.txt
deleted file mode 100644
index 14b53a0c2302ee780b915aa807aa68159f9f3759..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/linux/fast/events/constructors/progress-event-constructor-expected.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-This tests the constructor for the ProgressEvent DOM class.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS new ProgressEvent('eventType').bubbles is false
-PASS new ProgressEvent('eventType').cancelable is false
-PASS new ProgressEvent('eventType').lengthComputable is false
-PASS new ProgressEvent('eventType').loaded is 0
-PASS new ProgressEvent('eventType').total is 0
-PASS new ProgressEvent('eventType', { bubbles: false }).bubbles is false
-PASS new ProgressEvent('eventType', { bubbles: true }).bubbles is true
-PASS new ProgressEvent('eventType', { cancelable: false }).cancelable is false
-PASS new ProgressEvent('eventType', { cancelable: true }).cancelable is true
-PASS new ProgressEvent('eventType', { lengthComputable: false }).lengthComputable is false
-PASS new ProgressEvent('eventType', { lengthComputable: true }).lengthComputable is true
-PASS new ProgressEvent('eventType', { loaded: 0 }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: 1 }).loaded is 1
-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 12345678901234567890
-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
-PASS new ProgressEvent('eventType', { loaded: undefined }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: null }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: '' }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: '12345' }).loaded is 12345
-PASS new ProgressEvent('eventType', { loaded: '12345a' }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: 'abc' }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: [] }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: [12345] }).loaded is 12345
-PASS new ProgressEvent('eventType', { loaded: [12345, 67890] }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: {} }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: {moe: 12345} }).loaded is 0
-PASS new ProgressEvent('eventType', { loaded: {valueOf: function () { return 12345; }} }).loaded is 12345
-PASS new ProgressEvent('eventType', { total: 0 }).total is 0
-PASS new ProgressEvent('eventType', { total: 1 }).total is 1
-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 12345678901234567890
-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
-PASS new ProgressEvent('eventType', { total: undefined }).total is 0
-PASS new ProgressEvent('eventType', { total: null }).total is 0
-PASS new ProgressEvent('eventType', { total: '' }).total is 0
-PASS new ProgressEvent('eventType', { total: '12345' }).total is 12345
-PASS new ProgressEvent('eventType', { total: '12345a' }).total is 0
-PASS new ProgressEvent('eventType', { total: 'abc' }).total is 0
-PASS new ProgressEvent('eventType', { total: [] }).total is 0
-PASS new ProgressEvent('eventType', { total: [12345] }).total is 12345
-PASS new ProgressEvent('eventType', { total: [12345, 67890] }).total is 0
-PASS new ProgressEvent('eventType', { total: {} }).total is 0
-PASS new ProgressEvent('eventType', { total: {moe: 12345} }).total is 0
-PASS new ProgressEvent('eventType', { total: {valueOf: function () { return 12345; }} }).total is 12345
-PASS new ProgressEvent('eventType', { bubbles: true, cancelable: true, lengthComputable: true, loaded: 12345, total: 12345 }).bubbles is true
-PASS new ProgressEvent('eventType', { bubbles: true, cancelable: true, lengthComputable: true, loaded: 12345, total: 12345 }).cancelable is true
-PASS new ProgressEvent('eventType', { bubbles: true, cancelable: true, lengthComputable: true, loaded: 12345, total: 12345 }).lengthComputable is true
-PASS new ProgressEvent('eventType', { bubbles: true, cancelable: true, lengthComputable: true, loaded: 12345, total: 12345 }).loaded is 12345
-PASS new ProgressEvent('eventType', { bubbles: true, cancelable: true, lengthComputable: true, loaded: 12345, total: 12345 }).total is 12345
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698