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

Unified Diff: LayoutTests/fast/events/constructors/before-load-event-constructor-expected.txt

Issue 205523003: Remove beforeload events. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove more tests Created 6 years, 9 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/fast/events/constructors/before-load-event-constructor-expected.txt
diff --git a/LayoutTests/fast/events/constructors/before-load-event-constructor-expected.txt b/LayoutTests/fast/events/constructors/before-load-event-constructor-expected.txt
deleted file mode 100644
index 5bdbfbc9492d5b3def84bc27fa40c90d54523ff5..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/events/constructors/before-load-event-constructor-expected.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-This tests the constructor for the BeforeLoadEvent DOM class.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS new BeforeLoadEvent('eventType').bubbles is false
-PASS new BeforeLoadEvent('eventType').cancelable is false
-PASS new BeforeLoadEvent('eventType').url is ""
-PASS new BeforeLoadEvent('eventType', { bubbles: false }).bubbles is false
-PASS new BeforeLoadEvent('eventType', { bubbles: true }).bubbles is true
-PASS new BeforeLoadEvent('eventType', { cancelable: false }).cancelable is false
-PASS new BeforeLoadEvent('eventType', { cancelable: true }).cancelable is true
-PASS new BeforeLoadEvent('eventType', { url: 'doremi' }).url is "doremi"
-PASS new BeforeLoadEvent('eventType', { url: '' }).url is ""
-PASS new BeforeLoadEvent('eventType', { url: undefined }).url is "undefined"
-PASS new BeforeLoadEvent('eventType', { url: null }).url is "null"
-PASS new BeforeLoadEvent('eventType', { url: false }).url is "false"
-PASS new BeforeLoadEvent('eventType', { url: true }).url is "true"
-PASS new BeforeLoadEvent('eventType', { url: 12345 }).url is "12345"
-PASS new BeforeLoadEvent('eventType', { url: 18446744073709551615 }).url is "18446744073709552000"
-PASS new BeforeLoadEvent('eventType', { url: NaN }).url is "NaN"
-PASS new BeforeLoadEvent('eventType', { url: [] }).url is ""
-PASS new BeforeLoadEvent('eventType', { url: [1, 2, 3] }).url is "1,2,3"
-PASS new BeforeLoadEvent('eventType', { url: {doremi: 12345} }).url is "[object Object]"
-PASS new BeforeLoadEvent('eventType', { url: {valueOf: function () { return 'doremi'; } } }).url is "[object Object]"
-PASS new BeforeLoadEvent('eventType', { bubbles: true, cancelable: true, url: 'doremi' }).bubbles is true
-PASS new BeforeLoadEvent('eventType', { bubbles: true, cancelable: true, url: 'doremi' }).cancelable is true
-PASS new BeforeLoadEvent('eventType', { bubbles: true, cancelable: true, url: 'doremi' }).url is 'doremi'
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « LayoutTests/fast/events/constructors/before-load-event-constructor.html ('k') | LayoutTests/fast/events/event-attribute.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698