| Index: third_party/WebKit/LayoutTests/virtual/android/media/mediadocument/resources/standalone-audio.html
|
| diff --git a/third_party/WebKit/LayoutTests/virtual/android/media/mediadocument/resources/standalone-audio.html b/third_party/WebKit/LayoutTests/virtual/android/media/mediadocument/resources/standalone-audio.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..116ed764f457440cb31df25099aa8619081a17f3
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/virtual/android/media/mediadocument/resources/standalone-audio.html
|
| @@ -0,0 +1,52 @@
|
| +<!DOCTYPE html>
|
| +<head>
|
| +<meta name="viewport" content="width=device-width">
|
| +<style>
|
| +body {
|
| + background-color: black;
|
| + margin: 0;
|
| +}
|
| +.button1 {
|
| + display: inline-block;
|
| + margin-top: 32px;
|
| + padding: 0 16px 0 16px;
|
| + height: 36px;
|
| + background: #4285F4;
|
| + font-family: Roboto;
|
| + font-size: 14px;
|
| + border-radius: 5px;
|
| + color: white;
|
| + font-weight: bold;
|
| + text-decoration:none;
|
| + line-height: 36px;
|
| +}
|
| +
|
| +.div1 {
|
| + display: flex;
|
| + flex-direction: column;
|
| + justify-content: center;
|
| + align-items: center;
|
| + min-height: min-content;
|
| + height: 100%;
|
| +}
|
| +
|
| +.div2 {
|
| + text-align: center;
|
| + position: absolute;
|
| + left: 0;
|
| + right: 0;
|
| +}
|
| +
|
| +.video {
|
| + height: 1px;
|
| + width: 300px;
|
| + object-fit: contain;
|
| +}
|
| +</style>
|
| +</head>
|
| +<body>
|
| +<div class="div1">
|
| +<video controls autoplay class="video"><source src="../../../../../media/content/silence.wav"></video>
|
| +<div class="div2"><a href="../../../../../media/content/silence.wav" download class="button1">DOWNLOAD</a></div>
|
| +</div>
|
| +</body>
|
|
|