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

Unified Diff: LayoutTests/fast/mediastream/RTCSessionDescription.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/RTCSessionDescription.html
diff --git a/LayoutTests/fast/mediastream/RTCSessionDescription.html b/LayoutTests/fast/mediastream/RTCSessionDescription.html
deleted file mode 100644
index cd380ee8f59e46dd716726f4bc15fb85fb36bbd6..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/mediastream/RTCSessionDescription.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-<script>
-description("Tests RTCSessionDescription.");
-
-var initializer = {type:"offer", sdp:"foobar"};
-var sessionDescription;
-shouldNotThrow("sessionDescription = new RTCSessionDescription(initializer);");
-shouldBe('sessionDescription.type', '"offer"');
-shouldBe('sessionDescription.sdp', '"foobar"');
-
-shouldNotThrow('initializer = JSON.parse(JSON.stringify(sessionDescription));');
-
-shouldNotThrow("sessionDescription = new RTCSessionDescription(initializer);");
-shouldBe('sessionDescription.type', '"offer"');
-shouldBe('sessionDescription.sdp', '"foobar"');
-
-shouldNotThrow("new RTCSessionDescription();");
-shouldNotThrow("new RTCSessionDescription({});");
-shouldThrow("new RTCSessionDescription(5);");
-shouldThrow("new RTCSessionDescription('foobar');");
-shouldThrow("new RTCSessionDescription({type:'foobar', sdp:'x'});");
-shouldNotThrow("new RTCSessionDescription({type:'offer', sdp:''});");
-
-shouldNotThrow("new RTCSessionDescription({type:'offer', sdp:'x'});");
-shouldNotThrow("new RTCSessionDescription({type:'answer', sdp:'x'});");
-shouldNotThrow("new RTCSessionDescription({type:'pranswer', sdp:'x'});");
-
-window.successfullyParsed = true;
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698