blob: b52c87f761192574f5572721ba9e11c9e13d5c88 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
<script src="../dynamic-updates/resources/SVGTestCase.js"></script>
<script src="resources/SVGAnimationTestCase.js"></script>
</head>
<body onload="runSMILTest()">
<h1>SVG 1.1 dynamic animation tests</h1>
<p id="description"></p>
<div id="console"></div>
<script>
description("Test calcMode discrete with from-to animation on colors with alpha channel. You should see a green 100x100 rect and only PASS messages");
createSVGTestCase();
// Setup test document
var rect = createSVGElement("rect");
rect.setAttribute("id", "rect");
rect.setAttribute("width", "100");
rect.setAttribute("height", "100");
rect.setAttribute("color", "rgba(0,255,255, 0.4)");
rect.setAttribute("fill", "currentColor");
rect.setAttribute("onclick", "executeTest()");
var animate = createSVGElement("animate");
animate.setAttribute("id", "animation");
animate.setAttribute("attributeName", "color");
animate.setAttribute("from", "rgba(255,0,0,0.6)");
animate.setAttribute("to", "rgba(0,255,255,0.8)");
animate.setAttribute("begin", "click");
animate.setAttribute("dur", "4s");
animate.setAttribute("calcMode", "discrete");
rect.appendChild(animate);
rootSVGElement.appendChild(rect);
function parseAlphaFromColor() {
// As alpha is not exposed via CSS OM, we have to parse it from the color string, to be able
// to use shouldBeCloseEnough() - otherwise we can't allow tolerances, and this test is flaky.
colorString = getComputedStyle(rect).getPropertyValue('color');
return colorString.replace(/rgba.*\,/, "").replace(/\)$/, "");
}
function expectRGBAColor(red, green, blue, alpha) {
rgbColor = getComputedStyle(rect).getPropertyCSSValue('color').getRGBColorValue();
shouldBeCloseEnough("rgbColor.red.getFloatValue(CSSPrimitiveValue.CSS_NUMBER)", "" + red, 1);
shouldBeCloseEnough("rgbColor.green.getFloatValue(CSSPrimitiveValue.CSS_NUMBER)", "" + green, 1);
shouldBeCloseEnough("rgbColor.blue.getFloatValue(CSSPrimitiveValue.CSS_NUMBER)", "" + blue, 1);
shouldBeCloseEnough("parseAlphaFromColor()", "" + alpha, 0.1);
}
// Setup animation test
function sample1() {
expectRGBAColor(255, 0, 0, 0.6);
}
function sample2() {
expectRGBAColor(0, 255, 255, 0.8);
}
function sample3() {
expectRGBAColor(0, 255, 255, 0.4);
}
function executeTest() {
const expectedValues = [
// [animationId, time, sampleCallback]
["animation", 0.0, sample3],
["animation", 0.001, sample1],
["animation", 1.0, sample1],
["animation", 3.0, sample2],
["animation", 3.999, sample2],
["animation", 4.001, sample3]
];
runAnimationTest(expectedValues);
}
var successfullyParsed = true;
</script>
</body>
</html>