blob: 45ab6acc2f1010f6143b2d29125ca9ce6077e64e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=478398
-->
<head>
<title>Test for Bug 478398</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="imgutils.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=478398">Mozilla Bug 478398</a>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 399925. **/
var oldTimeoutPref;
var oldDiscardPref;
SimpleTest.waitForExplicitFinish();
window.onload = stage1;
var imageFilename = "bug478398_ONLY.png";
function stage1()
{
// Get the current pref values
oldTimeoutPref = getImagePref(DISCARD_TIMEOUT_PREF);
oldDiscardPref = getImagePref(DISCARD_ENABLED_PREF);
// We're testing discarding here
setImagePref(DISCARD_ENABLED_PREF, true);
// Sets the discard timer to 500 ms (max timeout = 2*500ms = 1s)
setImagePref(DISCARD_TIMEOUT_PREF, 500);
// Create the image _after_ setting the discard timer pref
// This image was carefully constructed to make it a "big win" for discarding,
// so any reasonable heuristic should still discard it.
var image = new Image();
image.setAttribute("id", "testimage");
image.style.display = "none";
image.src = imageFilename;
// Put the image into the document
document.body.appendChild(image);
// Wait for load, then do stage2
image.onload = stage2;
}
function stage2()
{
// Make sure we're loaded
ok(isImageLoaded("testimage"), "image should be loaded");
// We're loaded - force a synchronous decode
forceDecode("testimage");
// We should be decoded
ok(isFrameDecoded("testimage"), "image should be decoded");
// Wait 1.5 seconds, then finish the test
setTimeout(function() {
finishTest();;
}, 1500);
}
function finishTest()
{
// The image should be discarded by now
ok(!isFrameDecoded("testimage"), "image should have been discarded!");
// Reset the prefs
setImagePref(DISCARD_TIMEOUT_PREF, oldTimeoutPref);
setImagePref(DISCARD_ENABLED_PREF, oldDiscardPref);
// Finish the test
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>
|