Index: LayoutTests/fast/dom/StyleSheet/gc-inline-style-cssvalues.html |
diff --git a/LayoutTests/fast/dom/StyleSheet/gc-inline-style-cssvalues.html b/LayoutTests/fast/dom/StyleSheet/gc-inline-style-cssvalues.html |
deleted file mode 100644 |
index 4ae003cc958ab8b5763b32db9e3e06f4c423defc..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/StyleSheet/gc-inline-style-cssvalues.html |
+++ /dev/null |
@@ -1,17 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../../resources/js-test.js"></script> |
-</head> |
-<body style="color:black"> |
-<script> |
- description("Test that custom properties on CSSValues of inline style declarations survive GC"); |
- |
- var expr = 'document.body.style.getPropertyCSSValue("color")'; |
- shouldBe(expr + ".cssText", '"black"'); |
- eval(expr).foo = "bar" |
- gc(); |
- shouldBe(expr + ".foo", "'bar'"); |
- |
-</script> |
-</body> |
-</html> |