Index: third_party/WebKit/LayoutTests/webexposed/event-target-in-prototype.html |
diff --git a/third_party/WebKit/LayoutTests/webexposed/event-target-in-prototype.html b/third_party/WebKit/LayoutTests/webexposed/event-target-in-prototype.html |
index ff191936c348420a0cebbbe4677f0949e35c51cc..71d0f9df49d5a3205afe3af0ffb34ec11385beb5 100644 |
--- a/third_party/WebKit/LayoutTests/webexposed/event-target-in-prototype.html |
+++ b/third_party/WebKit/LayoutTests/webexposed/event-target-in-prototype.html |
@@ -6,7 +6,7 @@ |
<script> |
description("Check that interfaces inherit from EventTarget"); |
-eventTargets = ['EventSource', 'FileReader', 'MediaSource', 'MessagePort', 'Node', 'Performance', 'SharedWorker', 'WebSocket', 'Worker', 'AudioContext']; |
+eventTargets = ['EventSource', 'FileReader', 'MediaSource', 'MessagePort', 'Node', 'Performance', 'SharedWorker', 'WebSocket', 'Worker']; |
hongchan
2016/09/01 20:39:44
We don't check BaseAudioContext because it cannot
Raymond Toy
2016/09/01 20:51:37
Yes, I think so; BaseAudioContext can't be constru
hongchan
2016/09/01 23:03:19
If so, shouldn't we still have AudioContext and Of
|
for (var i = 0; i < eventTargets.length; i++) { |
if (eventTargets[i] in window) |