| Index: third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-state.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-state.html b/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-state.html
|
| deleted file mode 100644
|
| index 0235b40d020c0173013ddb8a4aa23c49de672465..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-state.html
|
| +++ /dev/null
|
| @@ -1,28 +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 states.");
|
| -
|
| -var pc = null;
|
| -
|
| -function stateChanged()
|
| -{
|
| - testPassed("stateChanged was called");
|
| - shouldBeEqualToString('pc.signalingState', 'closed');
|
| - finishJSTest();
|
| -}
|
| -
|
| -shouldNotThrow('pc = new webkitRTCPeerConnection({iceServers:[]}, null);');
|
| -shouldBeEqualToString('pc.signalingState', 'stable');
|
| -pc.onsignalingstatechange = stateChanged;
|
| -pc.close();
|
| -
|
| -window.jsTestIsAsync = true;
|
| -window.successfullyParsed = true;
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|