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

Unified Diff: LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html

Issue 650063002: Move MediaStream and MediaStreamTrack implementation from modules/mediastream to core/mediastream. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased. Created 6 years, 2 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/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>

Powered by Google App Engine
This is Rietveld 408576698