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

Unified Diff: LayoutTests/svg/animations/script-tests/attributeTypes.js

Issue 963733002: [svg2] Make 'width' and 'height' presentation attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebaseline some EX tests [Mac Win] Created 5 years, 9 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/animations/script-tests/attributeTypes.js
diff --git a/LayoutTests/svg/animations/script-tests/attributeTypes.js b/LayoutTests/svg/animations/script-tests/attributeTypes.js
index 75d8a832e64272b8068e4a90987087d212a5ebed..4c857e906bbf3dc7f827b77f4135e12d3f669858 100644
--- a/LayoutTests/svg/animations/script-tests/attributeTypes.js
+++ b/LayoutTests/svg/animations/script-tests/attributeTypes.js
@@ -7,8 +7,8 @@ function sample1() {
shouldBe("rect1.width.baseVal.value", "10");
expectFillColor(rect1, 0, 128, 0);
- shouldBe("rect2.width.animVal.value", "100");
- shouldBe("rect2.width.baseVal.value", "100");
+ shouldBe("rect2.width.animVal.value", "10");
+ shouldBe("rect2.width.baseVal.value", "10");
expectFillColor(rect2, 0, 128, 0);
shouldBe("rect3.width.animVal.value", "100");
@@ -27,8 +27,8 @@ function sample2() {
shouldBe("rect1.width.baseVal.value", "10");
expectFillColor(rect1, 0, 128, 0);
- shouldBe("rect2.width.animVal.value", "100");
- shouldBe("rect2.width.baseVal.value", "100");
+ shouldBe("rect2.width.animVal.value", "55");
+ shouldBe("rect2.width.baseVal.value", "10");
expectFillColor(rect2, 0, 128, 0);
shouldBe("rect3.width.animVal.value", "100");
@@ -48,7 +48,7 @@ function sample3() {
expectFillColor(rect1, 0, 128, 0);
shouldBe("rect2.width.animVal.value", "100");
- shouldBe("rect2.width.baseVal.value", "100");
+ shouldBe("rect2.width.baseVal.value", "10");
expectFillColor(rect2, 0, 128, 0);
shouldBe("rect3.width.animVal.value", "100");
« no previous file with comments | « LayoutTests/svg/animations/resources/attributeTypes.svg ('k') | LayoutTests/svg/custom/mask-excessive-malloc-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698