| Index: LayoutTests/svg/custom/script-tests/immutable-properties.js
|
| diff --git a/LayoutTests/svg/custom/script-tests/immutable-properties.js b/LayoutTests/svg/custom/script-tests/immutable-properties.js
|
| index cb862ea43ca5eb9ffc1453fbef5f960281a5705e..0182bd6a372339f0c458b669a68d42bdc3d00a54 100644
|
| --- a/LayoutTests/svg/custom/script-tests/immutable-properties.js
|
| +++ b/LayoutTests/svg/custom/script-tests/immutable-properties.js
|
| @@ -18,10 +18,7 @@ var zoomEvent = svgDoc.createEvent("SVGZoomEvents");
|
| var zoomRectScreen = zoomEvent.zoomRectScreen;
|
|
|
| shouldBe("zoomRectScreen.x", "0");
|
| -zoomRectScreen.x = 100;
|
| -
|
| -shouldBe("zoomRectScreen.x", "100");
|
| -shouldBe("zoomEvent.zoomRectScreen.x", "0");
|
| +shouldThrow("zoomRectScreen.x = 100;");
|
|
|
| // 'previousScale' property
|
| shouldBe("zoomEvent.previousScale", "0")
|
|
|