Index: third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEMorphologyElement.html |
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEMorphologyElement.html b/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEMorphologyElement.html |
index f28e08288804faff2a0997ecbf1b8efa8787e266..ef04d22f30cec9cfa726e4e627a62712cea40599 100644 |
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEMorphologyElement.html |
+++ b/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGFEMorphologyElement.html |
@@ -1,11 +1,40 @@ |
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
-<html> |
-<head> |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<p id="description"></p> |
-<div id="console"></div> |
-<script src="script-tests/SVGAnimatedEnumeration-SVGFEMorphologyElement.js"></script> |
-</body> |
-</html> |
+<!DOCTYPE HTML> |
+<title>Use of SVGAnimatedEnumeration within SVGFEMorphologyElement</title> |
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
+<script> |
+test(function() { |
+ // This test checks the use of SVGAnimatedEnumeration within SVGFEMorphologyElement. |
+ |
+ var feMorphologyElement = document.createElementNS("http://www.w3.org/2000/svg", "feMorphology"); |
+ feMorphologyElement.setAttribute("operator", "erode"); |
+ |
+ // Check initial 'operator' value. |
+ assert_true(feMorphologyElement.operator instanceof SVGAnimatedEnumeration); |
+ assert_equals(typeof(feMorphologyElement.operator.baseVal), "number"); |
+ assert_equals(feMorphologyElement.operator.baseVal, SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE); |
+ |
+ // Switch to 'dilate'. |
+ feMorphologyElement.operator.baseVal = SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE; |
+ assert_equals(feMorphologyElement.operator.baseVal, SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE); |
+ assert_equals(feMorphologyElement.getAttribute('operator'), "dilate"); |
+ |
+ // Try setting invalid values. |
+ assert_throws(new TypeError(), function() { feMorphologyElement.operator.baseVal = 4; }); |
+ assert_equals(feMorphologyElement.operator.baseVal, SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE); |
+ assert_equals(feMorphologyElement.getAttribute('operator'), "dilate"); |
+ |
+ assert_throws(new TypeError(), function() { feMorphologyElement.operator.baseVal = -1; }); |
+ assert_equals(feMorphologyElement.operator.baseVal, SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE); |
+ assert_equals(feMorphologyElement.getAttribute('operator'), "dilate"); |
+ |
+ assert_throws(new TypeError(), function() { feMorphologyElement.operator.baseVal = 0; }); |
+ assert_equals(feMorphologyElement.operator.baseVal, SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE); |
+ assert_equals(feMorphologyElement.getAttribute('operator'), "dilate"); |
+ |
+ // Switch to 'erode'. |
+ feMorphologyElement.operator.baseVal = SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE; |
+ assert_equals(feMorphologyElement.operator.baseVal, SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE); |
+ assert_equals(feMorphologyElement.getAttribute('operator'), "erode"); |
+}); |
+</script> |