| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <html> |
| <head> |
| <script src="../../resources/js-test-pre.js"></script> |
| </head> |
| <body> |
| <p id="description"></p> |
| <div id="console"></div> |
| <script> |
| 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; |
| </script> |
| <script src="../../resources/js-test-post.js"></script> |
| </body> |
| </html> |