Backed out changeset cdb7dae6fdbb (bug 614392) due to windows build bustage. a=bustage

This commit is contained in:
Daniel Holbert 2010-12-06 13:57:36 -08:00
Родитель d39271831c
Коммит f5c4a17af0
3 изменённых файлов: 4 добавлений и 47 удалений

Просмотреть файл

@ -106,7 +106,10 @@ interface imgIContainer : nsISupports
/** /**
* Direct C++ accessor for 'type' attribute, for convenience. * Direct C++ accessor for 'type' attribute, for convenience.
*/ */
[noscript, notxpcom] PRUint16 GetType(); %{C++
virtual PRUint16 GetType() = 0;
%}
/** /**
* Whether this image is animated. You can only be guaranteed that querying * Whether this image is animated. You can only be guaranteed that querying

Просмотреть файл

@ -73,7 +73,6 @@ _TEST_FILES = imgutils.js \
bug497665.sjs \ bug497665.sjs \
test_bug553982.html \ test_bug553982.html \
test_bug601470.html \ test_bug601470.html \
test_bug614392.html \
$(NULL) $(NULL)
# Tests disabled due to intermittent orange # Tests disabled due to intermittent orange

Просмотреть файл

@ -1,45 +0,0 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=614392
-->
<head>
<title>Test for Bug 614392</title>
<script type="application/javascript" src="/MochiKit/packed.js"></script>
<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=614392">Mozilla Bug 614392</a>
<p id="display"></p>
<div id="content" style="display: none">
<img src="damon.jpg">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 614392**/
SimpleTest.waitForExplicitFinish();
window.onload = function() {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var img = document.getElementsByTagName("img")[0];
var container = img
.QueryInterface(Components.interfaces.nsIImageLoadingContent)
.getRequest(Components.interfaces.nsIImageLoadingContent.CURRENT_REQUEST)
.image;
container.animationMode =
Components.interfaces.imgIContainer.kDontAnimMode;
is(container.animationMode,
Components.interfaces.imgIContainer.kDontAnimMode,
"yay, our animationMode tweak took effect (and we didn't crash!)");
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>