WebKit Bugzilla
Attachment 359263 Details for
Bug 193449
: Multiple playing videos pool needs to be managed by browser
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Testcase
bug-193449.html (text/html), 712 bytes, created by
Frédéric Wang (:fredw)
on 2019-01-16 05:04:38 PST
(
hide
)
Description:
Testcase
Filename:
MIME Type:
Creator:
Frédéric Wang (:fredw)
Created:
2019-01-16 05:04:38 PST
Size:
712 bytes
patch
obsolete
><!DOCTYPE html> ><html> > <head> > <meta name="viewport" content="width=device-width"> > <script> > function appendVideos(count) { > for (var i = 0; i < count; i++) > document.body.insertAdjacentHTML("beforeend", "<video width='50px' autoplay='autoplay'><source src='https://stamp.static.cnn.io/solar-system-missions/videos/page04.mp4' type='video/mp4'></video>"); > } > </script> > </head> > <body> > <input type="button" onclick="appendVideos(1)" value="Append video"></input> > <input type="button" onclick="appendVideos(8)" value="Append 8 videos"></input> > <input type="button" onclick="appendVideos(32)" value="Append 32 videos"></input> > <br/> > </body> ></html>
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width"> <script> function appendVideos(count) { for (var i = 0; i < count; i++) document.body.insertAdjacentHTML("beforeend", "<video width='50px' autoplay='autoplay'><source src='https://stamp.static.cnn.io/solar-system-missions/videos/page04.mp4' type='video/mp4'></video>"); } </script> </head> <body> <input type="button" onclick="appendVideos(1)" value="Append video"></input> <input type="button" onclick="appendVideos(8)" value="Append 8 videos"></input> <input type="button" onclick="appendVideos(32)" value="Append 32 videos"></input> <br/> </body> </html>
View Attachment As Raw
Actions:
View
Attachments on
bug 193449
: 359263 |
360458