blob: c7e6f6465112c332d84da578a8cb892272412d20 [file] [log] [blame]
description("Tests that 'transparent' is treated as a valid color.");
createSVGTestCase();
// Setup test document
var rect = createSVGElement("rect");
rect.setAttribute("id", "test");
rect.setAttribute("width", "100px");
rect.setAttribute("height", "100px");
rect.setAttribute("fill", "#00FF00");
rect.setAttribute("onclick", "executeTest()");
var animate = createSVGElement("animateColor");
animate.setAttribute("id", "animation");
animate.setAttribute("attributeName", "fill");
animate.setAttribute("from", "transparent");
animate.setAttribute("by", "red");
animate.setAttribute("dur", "3s");
animate.setAttribute("begin", "click");
rect.appendChild(animate);
rootSVGElement.appendChild(rect);
// Setup animation test
function expectTransparent() {
expectFillColor(rect, 0, 255, 0);
}
function expectOtherColor() {
expectFillColor(rect, 127, 0, 0);
}
function executeTest() {
const expectedValues = [
// [animationId, time, sampleCallback]
["animation", 0.0, expectTransparent],
["animation", 1.5, expectOtherColor]
];
runAnimationTest(expectedValues);
}
var successfullyParsed = true;