Index: LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html |
diff --git a/LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html b/LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html |
deleted file mode 100644 |
index f5775886c4618a29cec1b657a2f089c15fe9efd1..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html |
+++ /dev/null |
@@ -1,54 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
-<html> |
-<head> |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<script> |
-description("Tests RTCPeerConnection localDescription."); |
- |
-var pc = null; |
- |
-function requestFailed2() |
-{ |
- testPassed('requestFailed was called.'); |
- |
- shouldBeEqualToString('pc.localDescription.type', "offer"); |
- shouldBeEqualToString('pc.localDescription.sdp', "local"); |
- pc.close(); |
- shouldBeEqualToString('pc.localDescription.type', "offer"); |
- shouldBeEqualToString('pc.localDescription.sdp', "local"); |
- |
- finishJSTest(); |
-} |
- |
-function requestSucceeded2() |
-{ |
- testFailed('requestSucceeded was called.'); |
- finishJSTest(); |
-} |
- |
-function requestFailed1() |
-{ |
- testFailed('requestFailed was called.'); |
- finishJSTest(); |
-} |
- |
-function requestSucceeded1() |
-{ |
- testPassed('requestSucceeded was called.'); |
- |
- sessionDescription = new RTCSessionDescription({type:"answer", sdp:"remote"}); |
- shouldNotThrow('pc.setLocalDescription(sessionDescription, requestSucceeded2, requestFailed2);'); |
-} |
- |
-pc = new webkitRTCPeerConnection(null, null); |
-var sessionDescription = new RTCSessionDescription({type:"offer", sdp:"local"}); |
-shouldNotThrow('pc.setLocalDescription(sessionDescription, requestSucceeded1, requestFailed1);'); |
- |
- |
-window.jsTestIsAsync = true; |
-window.successfullyParsed = true; |
-</script> |
-</body> |
-</html> |