blob: 31337b6c0731d4c5a989b1710c8d2ad0ec9fd81d [file] [log] [blame]
description("This test checks that SVG operator attribute exists while _operator doesn't");
var feMorphologyElement = document.createElementNS("http://www.w3.org/2000/svg", "feMorphology");
feMorphologyElement.setAttribute("operator", "dilate");
// We need to check if we are on a filters enabled build:
if ('SVGFEMorphologyElement' in window) {
shouldBe("feMorphologyElement.operator.baseVal", "SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE");
feMorphologyElement.setAttribute("operator", "erode");
shouldBe("feMorphologyElement.operator.baseVal", "SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE");
shouldBeUndefined("feMorphologyElement._operator");
}
successfullyParsed = true;