EME WPT idlharness.html failure: Cannot read property 'has_extended_attribute' of undefined |
||
Issue descriptionVersion : 54.0.2824.0 Steps to reproduce: 1. https://www.w3c-test.org/encrypted-media/idlharness.html Observed behavior: 12 of the tests fail with Cannot read property 'has_extended_attribute' of undefined Additional comments: We know we support these methods. It's not clear what is being tested or passed, We should investigate and hopefully fix 12 tests. Note: It's possible this is a general issue in Blink and not specific to Chrome.
,
Aug 9 2016
Correction: This affects *6* tests.
,
Aug 9 2016
Another correction: I meant it may not be specific to *EME*.
,
Aug 9 2016
You need to do this:
diff --git a/encrypted-media/idlharness.html b/encrypted-media/idlharness.html
index 5c9f643..7c46733 100644
--- a/encrypted-media/idlharness.html
+++ b/encrypted-media/idlharness.html
@@ -34,6 +34,8 @@
idl_array.add_untested_idls("interface Navigator {};");
idl_array.add_untested_idls("interface ArrayBuffer {};");
idl_array.add_untested_idls("interface HTMLMediaElement {};");
+ idl_array.add_untested_idls("interface Event {};");
+ idl_array.add_untested_idls("interface EventTarget {};");
idl_array.add_idls(idls);
,
Aug 9 2016
Thanks, sideshowbarker. https://github.com/w3c/web-platform-tests/pull/3442 resolves this test issue. Three of the six tests now pass. The other three now fail with the error in issue 635694 . |
||
►
Sign in to add a comment |
||
Comment 1 by ddorwin@chromium.org
, Aug 9 2016