| Index: third_party/WebKit/LayoutTests/svg/dynamic-updates/script-tests/SVGCursorElement-svgdom-x-prop.js
|
| diff --git a/third_party/WebKit/LayoutTests/svg/dynamic-updates/script-tests/SVGCursorElement-svgdom-x-prop.js b/third_party/WebKit/LayoutTests/svg/dynamic-updates/script-tests/SVGCursorElement-svgdom-x-prop.js
|
| deleted file mode 100644
|
| index e375f4e6e0ee905a7c1c36ef47816afa9551c846..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/svg/dynamic-updates/script-tests/SVGCursorElement-svgdom-x-prop.js
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -// [Name] SVGCursorElement-svgdom-x-prop.js
|
| -// [Expected rendering result] cursor image should hang from the upper-left corner of the cursor after clicking - and a series of PASS mesasges
|
| -
|
| -description("Tests dynamic updates of the 'x' property of the SVGCursorElement object")
|
| -createSVGTestCase();
|
| -
|
| -var cursorElement = createSVGElement("cursor");
|
| -cursorElement.setAttribute("id", "cursor");
|
| -cursorElement.setAttribute("x", "100");
|
| -cursorElement.setAttributeNS(xlinkNS, "xlink:href", "../W3C-SVG-1.1/resources/sphere.png");
|
| -rootSVGElement.appendChild(cursorElement);
|
| -
|
| -var rectElement = createSVGElement("rect");
|
| -rectElement.setAttribute("cursor", "url(#cursor)");
|
| -rectElement.setAttribute("width", "200");
|
| -rectElement.setAttribute("height", "200");
|
| -rectElement.setAttribute("fill", "green");
|
| -rootSVGElement.appendChild(rectElement);
|
| -
|
| -shouldBe("cursorElement.x.baseVal.value", "100");
|
| -
|
| -function repaintTest() {
|
| - cursorElement.x.baseVal.value = 0;
|
| - shouldBe("cursorElement.x.baseVal.value", "0");
|
| -}
|
| -
|
| -var successfullyParsed = true;
|
|
|