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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/constructors/autocomplete-error-event-constructor-expected.txt

Issue 1958543002: requestAutocomplete: remove from web platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Document-createEvent-expected.txt Created 4 years, 7 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: third_party/WebKit/LayoutTests/fast/events/constructors/autocomplete-error-event-constructor-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/events/constructors/autocomplete-error-event-constructor-expected.txt b/third_party/WebKit/LayoutTests/fast/events/constructors/autocomplete-error-event-constructor-expected.txt
deleted file mode 100644
index 45c8205590e6f05752806fdcf7aed15fa98b8963..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/events/constructors/autocomplete-error-event-constructor-expected.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-This tests the constructor for the AutocompleteErrorEvent DOM class.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS new AutocompleteErrorEvent('eventType').bubbles is false
-PASS new AutocompleteErrorEvent('eventType').cancelable is false
-PASS new AutocompleteErrorEvent('eventType').reason is ""
-PASS new AutocompleteErrorEvent('eventType', { bubbles: false }).bubbles is false
-PASS new AutocompleteErrorEvent('eventType', { bubbles: true }).bubbles is true
-PASS new AutocompleteErrorEvent('eventType', { cancelable: false }).cancelable is false
-PASS new AutocompleteErrorEvent('eventType', { cancelable: true }).cancelable is true
-PASS new AutocompleteErrorEvent('eventType', { reason: 'cancel' }).reason is "cancel"
-PASS new AutocompleteErrorEvent('eventType', { reason: '' }).reason is ""
-PASS new AutocompleteErrorEvent('eventType', { reason: 'disabled' }).reason is "disabled"
-PASS new AutocompleteErrorEvent('eventType', { reason: 'invalid' }).reason is "invalid"
-PASS new AutocompleteErrorEvent('eventType', { reason: undefined }).reason is ""
-PASS new AutocompleteErrorEvent('eventType', { reason: 'doremi' }) threw exception TypeError: Failed to construct 'AutocompleteErrorEvent': The provided value 'doremi' is not a valid enum value of type AutocompleteErrorReason..
-PASS new AutocompleteErrorEvent('eventType', { reason: null }) threw exception TypeError: Failed to construct 'AutocompleteErrorEvent': The provided value 'null' is not a valid enum value of type AutocompleteErrorReason..
-PASS new AutocompleteErrorEvent('eventType', { reason: false }) threw exception TypeError: Failed to construct 'AutocompleteErrorEvent': The provided value 'false' is not a valid enum value of type AutocompleteErrorReason..
-PASS new AutocompleteErrorEvent('eventType', { reason: true }) threw exception TypeError: Failed to construct 'AutocompleteErrorEvent': The provided value 'true' is not a valid enum value of type AutocompleteErrorReason..
-PASS new AutocompleteErrorEvent('eventType', { reason: 12345 }) threw exception TypeError: Failed to construct 'AutocompleteErrorEvent': The provided value '12345' is not a valid enum value of type AutocompleteErrorReason..
-PASS new AutocompleteErrorEvent('eventType', { reason: NaN }) threw exception TypeError: Failed to construct 'AutocompleteErrorEvent': The provided value 'NaN' is not a valid enum value of type AutocompleteErrorReason..
-PASS new AutocompleteErrorEvent('eventType', { bubbles: true, cancelable: true, reason: '' }).bubbles is true
-PASS new AutocompleteErrorEvent('eventType', { bubbles: true, cancelable: true, reason: 'cancel' }).cancelable is true
-PASS new AutocompleteErrorEvent('eventType', { bubbles: true, cancelable: true, reason: 'disabled' }).reason is "disabled"
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698