blob: 9df41836fd0ea01cde249bdf8043a219f6911c0e [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/js-test.js"></script>
<script>
var SVGSMILAnimationInImageRegardlessOfCache = 768; // From UseCounter.h
window.jsTestIsAsync = true;
shouldBeFalse("window.internals.isUseCounted(document, SVGSMILAnimationInImageRegardlessOfCache)");
var img = new Image();
img.onload = function() {
shouldBeTrue("window.internals.isUseCounted(document, SVGSMILAnimationInImageRegardlessOfCache)");
finishJSTest();
}
img.src = "resources/animated-rect-color.svg";
</script>
</html>