| Index: LayoutTests/media/video-element-other-namespace-crash.html
|
| diff --git a/LayoutTests/media/video-element-other-namespace-crash.html b/LayoutTests/media/video-element-other-namespace-crash.html
|
| deleted file mode 100644
|
| index b3e9357bbe926e231f3809570ba148953ae0537d..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/media/video-element-other-namespace-crash.html
|
| +++ /dev/null
|
| @@ -1,29 +0,0 @@
|
| -<html>
|
| -<script>
|
| -if (window.testRunner)
|
| -{
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| -}
|
| -
|
| -function runTest()
|
| -{
|
| - frame = document.body.appendChild(document.createElement('iframe'));
|
| - frame.onload = function() {
|
| - frame.onload = null;
|
| - container = frame.contentDocument.body.appendChild(frame.contentDocument.createElement('div'));
|
| - otherVideo = container.appendChild(frame.contentDocument.createElementNS('other', 'video'));
|
| - event = frame.contentDocument.createEvent('KeyboardEvents');
|
| - event.initKeyboardEvent('keydown', 1, 1, frame.contentWindow, 'U+0020');
|
| - container.dispatchEvent(event);
|
| -
|
| - document.body.appendChild(document.createTextNode('PASS, did not crash.'));
|
| - if (window.testRunner)
|
| - testRunner.notifyDone();
|
| - }
|
| -
|
| - frame.src = 'content/test.mp4';
|
| -}
|
| -</script>
|
| -<body onload="runTest()"/>
|
| -</html>
|
|
|