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

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

Issue 2362653002: Convert LayoutTests/svg/dom/SVGTransform*.html js-tests.js to testharness.js based tests (Closed)
Patch Set: Align with review comments Created 4 years, 3 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: third_party/WebKit/LayoutTests/svg/dom/SVGTransformList-with-existing-item-expected.txt
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGTransformList-with-existing-item-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGTransformList-with-existing-item-expected.txt
deleted file mode 100644
index 3480690d07408507420467199c8670af88e81225..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGTransformList-with-existing-item-expected.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-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
-

Powered by Google App Engine
This is Rietveld 408576698