Index: chrome/test/data/webrtc/manual/constraints.html |
diff --git a/chrome/test/data/webrtc/manual/constraints.html b/chrome/test/data/webrtc/manual/constraints.html |
deleted file mode 100644 |
index fcc9e6ffe12c49b29f67f94d33b7d8ed7de0454b..0000000000000000000000000000000000000000 |
--- a/chrome/test/data/webrtc/manual/constraints.html |
+++ /dev/null |
@@ -1,64 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
-<html> |
-<head> |
- <title>WebRTC GetUserMedia Constraints Manual Test</title> |
- <!-- Load the polyfill to switch-hit between Chrome and Firefox --> |
- <script type="text/javascript" src="../adapter.js"></script> |
- <script type="text/javascript" src="constraints.js"></script> |
- <link rel="StyleSheet" type="text/css" href="stylesheet.css"> |
- <meta charset="utf-8"> |
-</head> |
-<body> |
- |
-<div id="wrapper"> |
- <div id="left"> |
- <p>This page can create GetUserMedia <a href="http://goo.gl/qZQjV"> |
- MediaStreamConstraints</a> that can be used on the<br/> |
- <a href="peerconnection.html">PeerConnection Manual Test page.</a></p> |
- MediaStreamConstraints:<br/> |
- <textarea id="getusermedia-constraints" rows="10" cols="60" |
- readonly="readonly"/></textarea> |
- <br/> |
- |
- Audio<input type="checkbox" id="audio" checked /> |
- Video<input type="checkbox" id="video" checked /> |
- |
- <h2>Video constraints</h2> |
- Only applicable if the video checkbox is checked above. |
- <h3>Mandatory</h3> |
- Min |
- <input type="text" id="mandatory-min-width" size="4"/>x |
- <input type="text" id="mandatory-min-height" size="4"/> |
- FPS: <input type="text" id="mandatory-min-fps" size="2"/> |
- Aspect ratio: <input type="text" id="mandatory-min-ar" size="2"/><br/> |
- Max |
- <input type="text" id="mandatory-max-width" size="4"/>x |
- <input type="text" id="mandatory-max-height" size="4"/> |
- FPS: <input type="text" id="mandatory-max-fps" size="2"/> |
- Aspect ratio: <input type="text" id="mandatory-max-ar" size="2"/> |
- |
- <h3>Optional</h3> |
- Min |
- <input type="text" id="optional-min-width" size="4"/>x |
- <input type="text" id="optional-min-height" size="4"/> |
- FPS: <input type="text" id="optional-min-fps" size="2"/> |
- Aspect ratio: <input type="text" id="optional-min-ar" size="2"/><br/> |
- Max |
- <input type="text" id="optional-max-width" size="4"/>x |
- <input type="text" id="optional-max-height" size="4"/> |
- FPS: <input type="text" id="optional-max-fps" size="2"/> |
- Aspect ratio: <input type="text" id="optional-max-ar" size="2"/><br/> |
- <button id="re-request" onclick="doGetUserMedia();"> |
- Request GetUserMedia |
- </button> |
- <h2>Messages</h2> |
- <pre id="messages"></pre> |
- </div> |
- <div> |
- <h2>Local Preview</h2> |
- <video width="320" height="240" id="local-view" autoplay="autoplay"> |
- </video> |
- </div> |
-</div> |
-</body> |
-</html> |