mirror of
https://github.com/servo/servo.git
synced 2025-10-16 08:20:22 +01:00
17 lines
315 B
JavaScript
17 lines
315 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: timeout=long
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['video-rvfc'],
|
|
['html', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
HTMLVideoElement: ['video'],
|
|
});
|
|
self.video = document.createElement('video');
|
|
}
|
|
);
|
|
|