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

Unified Diff: LayoutTests/svg/dom/SVGListPropertyTearOff-gccrash.html

Issue 24863002: Revert 157959 "Introduce a new reference graph to SVG*TearOffs." (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 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
« no previous file with comments | « no previous file | LayoutTests/svg/dom/SVGListPropertyTearOff-gccrash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/dom/SVGListPropertyTearOff-gccrash.html
diff --git a/LayoutTests/svg/dom/SVGListPropertyTearOff-gccrash.html b/LayoutTests/svg/dom/SVGListPropertyTearOff-gccrash.html
deleted file mode 100644
index 9e35d947abf5a037032b8d6a73b8cabaf17df07e..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/dom/SVGListPropertyTearOff-gccrash.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<script src="../../fast/js/resources/js-test-pre.js"></script>
-<script>
- gc();
-
- var text = document.createElementNS("http://www.w3.org/2000/svg", "text");
-
- var initialNumberOfNodes;
- if (internals)
- initialNumberOfNodes = internals.numberOfLiveNodes();
-
- var rotate = text.rotate;
- text = null;
-
- gc();
- // Assert that the <text> svg element is alive while a tear-off is alive.
- if (internals)
- shouldBe('internals.numberOfLiveNodes()', 'initialNumberOfNodes');
-
- // Accessing to properties of deleted SVGElement should not cause crash
- rotate;
- rotate.animVal;
- try { rotate.animVal.getItem(0); } catch(e) {}
-</script>
-<div>PASS: Did not crash.</div>
-<script src="../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/svg/dom/SVGListPropertyTearOff-gccrash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698