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

Unified Diff: LayoutTests/svg/dom/SVGTransformList-with-existing-item-expected.txt

Issue 1177303004: Updated SVGListPropertyHelper as per SVG2 Spec (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fixed presubmit error Created 5 years, 6 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/dom/SVGTransformList-with-existing-item-expected.txt
diff --git a/LayoutTests/svg/dom/SVGTransformList-with-existing-item-expected.txt b/LayoutTests/svg/dom/SVGTransformList-with-existing-item-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3480690d07408507420467199c8670af88e81225
--- /dev/null
+++ b/LayoutTests/svg/dom/SVGTransformList-with-existing-item-expected.txt
@@ -0,0 +1,36 @@
+This is a test of more SVGTransformList API parts.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+Test appendItem with SVGTransform that already exist in a list
+PASS transformList1.numberOfItems is 2
+PASS transformList2.numberOfItems is 2
+PASS transformList1.getItem(1).toString() is "type=SVG_TRANSFORM_TRANSLATE matrix=[1.0 0.0 0.0 1.0 100.0 100.0]"
+PASS transformList2.getItem(1).toString() is "type=SVG_TRANSFORM_TRANSLATE matrix=[1.0 0.0 0.0 1.0 100.0 100.0]"
+
+Test changing SVGTransform value
+PASS transformList1.getItem(1).toString() is "type=SVG_TRANSFORM_TRANSLATE matrix=[1.0 0.0 0.0 1.0 200.0 200.0]"
+PASS transformList2.getItem(1).toString() is "type=SVG_TRANSFORM_TRANSLATE matrix=[1.0 0.0 0.0 1.0 100.0 100.0]"
+
+Test insertItemBefore with SVGTransform that already exist in a list
+PASS transformList1.getItem(0).toString() is "type=SVG_TRANSFORM_TRANSLATE matrix=[1.0 0.0 0.0 1.0 200.0 200.0]"
+PASS transformList2.getItem(0).toString() is "type=SVG_TRANSFORM_TRANSLATE matrix=[1.0 0.0 0.0 1.0 200.0 200.0]"
+PASS transformList1.numberOfItems is 3
+PASS transformList2.numberOfItems is 3
+
+Test replaceItem with SVGTransform that already exist in a list
+PASS transformList1.getItem(2).toString() is "type=SVG_TRANSFORM_SCALE matrix=[3.0 0.0 0.0 3.0 0.0 0.0]"
+PASS transformList2.getItem(2).toString() is "type=SVG_TRANSFORM_SCALE matrix=[3.0 0.0 0.0 3.0 0.0 0.0]"
+PASS transformList1.numberOfItems is 3
+PASS transformList2.numberOfItems is 3
+
+Test initialize with SVGTransform that already exist in a list
+PASS transformList1.getItem(0).toString() is "type=SVG_TRANSFORM_SCALE matrix=[3.0 0.0 0.0 3.0 0.0 0.0]"
+PASS transformList2.getItem(0).toString() is "type=SVG_TRANSFORM_SCALE matrix=[3.0 0.0 0.0 3.0 0.0 0.0]"
+PASS transformList1.numberOfItems is 1
+PASS transformList2.numberOfItems is 1
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
« no previous file with comments | « LayoutTests/svg/dom/SVGTransformList-with-existing-item.html ('k') | LayoutTests/svg/dom/resources/SVGTransformList-helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698