mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
fd238cabbe
--HG-- rename : content/canvas/src/WebGLMemoryMultiReporterWrapper.h => content/canvas/src/WebGLMemoryReporterWrapper.h extra : rebase_source : 2b2a1b2667d6562fcf803ec48b4a8c10fdd519a3
49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=601470
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 601470</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=601470">Mozilla Bug 601470</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
<img src="lime100x100.svg" style="width: 100px; height: 100px;">
|
|
<img src="damon.jpg" style="width: 100px; height: 100px;">
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
/** Test for Bug 601470 **/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
window.onload = function() {
|
|
var mgr = SpecialPowers.Cc["@mozilla.org/memory-reporter-manager;1"]
|
|
.getService(SpecialPowers.Ci.nsIMemoryReporterManager);
|
|
|
|
var amount = 0;
|
|
var handleReport = function(aProcess, aPath, aKind, aUnits, aAmount, aDesc) {
|
|
amount += aAmount;
|
|
}
|
|
|
|
var e = mgr.enumerateReporters();
|
|
while (e.hasMoreElements()) {
|
|
var mr = e.getNext().QueryInterface(SpecialPowers.Ci.nsIMemoryReporter);
|
|
mr.collectReports(handleReport, null);
|
|
}
|
|
|
|
ok(amount > 0, "we should be using a nonzero amount of memory");
|
|
ok(true, "yay, didn't crash!");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|