bergin
unread,Dec 28, 2011, 3:55:37 AM12/28/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium-dev
Hi,
When running Chromium 15.0.874.106 Ubuntu 11.10 on a web-page with
html5 video tags we experience a memory leak.
This behavior has been seen regardless of used video format (ogg,
webm, h264) and it has also been see in later version of the chromium-
browser (17.x).
During the test the memory increase is around 10MB/h. We have seen in
other tests that the if the browser is left running for a longer time,
it will consume all available memory, which in the end will crash the
system.
The following html-code is used to test and is run on a Apache server:
---------
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset=utf-8>
<title>Video Player Test Page</title>
</head>
<body>
<div id="container" margin="0" padding="0" border="0">
<header>
<h1>Video Test Page</h1>
</header>
<section>
<hgroup>
<video src="video/sintel_trailer-720p.mp4" type='video/
mp4; codecs="avc1.42E01E, mp4a.40.2"' video width="1080" height="720"
margin="0" padding="0" border="0" loop="loop" autoplay></video>
</hgroup>
</section>
</div>
</body>
</html>
---------
Have anyone seen any similar behaviour? Are there any work-around to
avoid this increase in memory?
Regards,
/Peter