Guest User

Untitled

a guest
Mar 26th, 2014
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title>Amuse Media Receiver</title>
  6. </head>
  7.  
  8. <body>
  9. <script type="text/javascript">
  10. "use strict";
  11. var ifrm = document.createElement("iframe");
  12.  
  13. console.log("H: " + window.innerHeight);
  14. console.log("W: " + window.innerWidth);
  15. var url = "http://dash-mse-test.appspot.com/dash-player.html?url=http%3A%2F%2Fyt-dash-mse-test.commondatastorage.googleapis.com%2Fmedia%2Foops_cenc-20121114-signed" +
  16. "licenseurl-manifest.mpd&autoplay=on&adapt=auto&flavor=";
  17. ifrm.setAttribute("src", url);
  18. console.log(url);
  19. ifrm.style.width = 2000 +"px";
  20. ifrm.style.height = 2000 +"px";
  21. document.body.appendChild(ifrm);
  22.  
  23. window.scrollTo(500, 1500);
  24.  
  25. </script>
  26.  
  27.  
  28. </body>
Advertisement
Add Comment
Please, Sign In to add comment