Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: LayoutTests/svg/custom/script-tests/immutable-properties.js

Issue 132233010: [SVG] SVGAnimatedRect migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebsaed Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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")
« no previous file with comments | « LayoutTests/svg/custom/immutable-properties-expected.txt ('k') | LayoutTests/svg/dom/SVGViewSpec-invalid-ref-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698