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

Unified Diff: LayoutTests/svg/dom/baseVal-animVal-crash.html

Issue 656913006: Remove SVG fonts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update tests for landing Created 6 years, 2 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/baseVal-animVal-crash.html
diff --git a/LayoutTests/svg/dom/baseVal-animVal-crash.html b/LayoutTests/svg/dom/baseVal-animVal-crash.html
deleted file mode 100644
index ec124ff5e54d2ab94ef9128e814c6e89a630fd1b..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/dom/baseVal-animVal-crash.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-function go() {
- var oSVGAltGlyphElement = document.createElementNS("http://www.w3.org/2000/svg", "altGlyph");
- var oSvgMaskElement = document.createElementNS("http://www.w3.org/2000/svg", "mask");
- var oSvgLengthList = oSVGAltGlyphElement.dy.baseVal;
- oSvgLengthList.appendItem(oSvgMaskElement.width.animVal);
- gc();
- oSvgLengthList.appendItem(oSvgMaskElement.width.animVal);
- gc();
- oSvgLengthList.removeItem(0);
- gc();
- oSvgLengthList.appendItem(oSvgMaskElement.width.animVal);
- gc();
-}
-</script>
-</head>
-<body onload="go()">
-This test passes if it doesn't crash.
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698