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

Unified Diff: LayoutTests/fast/mediastream/RTCPeerConnection-statsSelector.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-statsSelector.html
diff --git a/LayoutTests/fast/mediastream/RTCPeerConnection-statsSelector.html b/LayoutTests/fast/mediastream/RTCPeerConnection-statsSelector.html
deleted file mode 100644
index d761d2c05caeedd62a1363b608aa82246f99aed4..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/mediastream/RTCPeerConnection-statsSelector.html
+++ /dev/null
@@ -1,63 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body>
-<script>
-description("Tests the RTCPeerConnection stats selector argument.");
-
-var pc = null;
-var result;
-var timestamp;
-var local;
-
-function getUserMedia(dictionary, callback) {
- try {
- navigator.webkitGetUserMedia(dictionary, callback, error);
- } catch (e) {
- testFailed('webkitGetUserMedia threw exception :' + e);
- finishJSTest();
- }
-}
-
-function error() {
- testFailed('Stream generation failed.');
- finishJSTest();
-}
-
-function gotStream(s) {
- testPassed('Got a stream.');
- stream = s;
-
- pc.addStream(stream);
- shouldNotThrow('pc.getStats(statsHandler2, pc.getLocalStreams()[0].getVideoTracks()[0])');
-}
-
-function statsHandler2(status)
-{
- testPassed("statsHandler2 was called");
- result = status.result();
- shouldBeGreaterThanOrEqual('result.length', '1');
- local = result[0].local;
- timestamp = local.timestamp;
- // Windows XP sometimes gives time that appears to go backwards.
- // This hack will make the tests non-flaky if it never goes backwards
- // by more than 20 milliseconds.
- // Up to 10 milliseconds has been observed on XP, 2 milliseconds on Win7.
- fudgeForXP = 20;
- timediff = timestamp - startTime + fudgeForXP;
- shouldBeGreaterThanOrEqual('timediff', '0');
- shouldBe('local.stat("type")', '"video"');
- finishJSTest();
-}
-
-var startTime = new Date().getTime();
-shouldNotThrow('pc = new webkitRTCPeerConnection(null)');
-shouldNotThrow('getUserMedia({audio:true, video:true}, gotStream)');
-
-window.jsTestIsAsync = true;
-window.successfullyParsed = true;
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698