| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 * Copyright 2013 The Chromium Authors. All rights reserved. Use of this | 2 * Copyright 2013 The Chromium Authors. All rights reserved. Use of this |
| 3 * source code is governed by a BSD-style license that can be found in the | 3 * source code is governed by a BSD-style license that can be found in the |
| 4 * LICENSE file. | 4 * LICENSE file. |
| 5 --> | 5 --> |
| 6 <html> | 6 <html> |
| 7 <head> | 7 <head> |
| 8 <script type="text/javascript"> | 8 <script type="text/javascript"> |
| 9 // A guest that requests media access. | 9 // A guest that requests media access. |
| 10 // Notifies the embedder about the result of the request (success/fail) | 10 // Notifies the embedder about the result of the request (success/fail) |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 startTest(testCase); | 41 startTest(testCase); |
| 42 } | 42 } |
| 43 }; | 43 }; |
| 44 window.addEventListener('message', onPostMessageReceived, false); | 44 window.addEventListener('message', onPostMessageReceived, false); |
| 45 </script> | 45 </script> |
| 46 </head> | 46 </head> |
| 47 <body> | 47 <body> |
| 48 <div>This is a guest that requests audio media.</div> | 48 <div>This is a guest that requests audio media.</div> |
| 49 </body> | 49 </body> |
| 50 </html> | 50 </html> |
| OLD | NEW |