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

Unified Diff: LayoutTests/media/video-element-other-namespace-crash.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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: 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>

Powered by Google App Engine
This is Rietveld 408576698