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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/event-creation.html

Issue 2217763003: Remove Blink-WebKit-only document.createEvent strings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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/event-creation.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/event-creation.html b/third_party/WebKit/LayoutTests/fast/events/event-creation.html
index 7b4365084df2c9f6555934211cd0ecaebfe7fe0d..1a2c028cb7fd45eb47a29ad2b819afcaefaeaa8e 100644
--- a/third_party/WebKit/LayoutTests/fast/events/event-creation.html
+++ b/third_party/WebKit/LayoutTests/fast/events/event-creation.html
@@ -173,23 +173,6 @@
// The following are here for completeness, but won't until there is more widespread support for them.
- // #if ENABLE(WEB_AUDIO)
- // AudioProcessingEvent
- // shouldBeTrue("document.createEvent('AudioProcessingEvent') instanceof window.AudioProcessingEvent");
- // shouldBeTrue("document.createEvent('AudioProcessingEvent') instanceof window.Event");
- // shouldBeTrue("document.createEvent('AudioProcessingEvent').constructor === window.AudioProcessingEvent");
-
- // #if ENABLE(WEB_AUDIO)
- // OfflineAudioCompletionEvent
- // shouldBeTrue("document.createEvent('OfflineAudioCompletionEvent') instanceof window.OfflineAudioCompletionEvent");
- // shouldBeTrue("document.createEvent('OfflineAudioCompletionEvent') instanceof window.Event");
- // shouldBeTrue("document.createEvent('OfflineAudioCompletionEvent').constructor === window.OfflineAudioCompletionEvent");
-
- // MediaStreamEvent
- // shouldBeTrue("document.createEvent('MediaStreamEvent') instanceof window.MediaStreamEvent");
- // shouldBeTrue("document.createEvent('MediaStreamEvent') instanceof window.Event");
- // shouldBeTrue("document.createEvent('MediaStreamEvent').constructor === window.MediaStreamEvent");
-
// #if ENABLE(WEBGL)
// WebGLContextEvent
// shouldBeTrue("document.createEvent('WebGLContextEvent') instanceof window.WebGLContextEvent");
@@ -211,10 +194,6 @@
// shouldBeTrue("document.createEvent('DeviceOrientationEvent') instanceof window.Event");
// shouldBeTrue("document.createEvent('DeviceOrientationEvent').constructor === window.DeviceOrientationEvent");
- // OrientationEvent (Event alternative)
- // shouldBeTrue("document.createEvent('OrientationEvent') instanceof window.Event");
- // shouldBeTrue("document.createEvent('OrientationEvent').constructor === window.Event");
-
// We test both a hard coded set and the automated set below (using enumeration) to ensure that a constructor being removed
// from the window is caught a regression.

Powered by Google App Engine
This is Rietveld 408576698