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

Unified Diff: LayoutTests/fast/dom/StyleSheet/gc-inline-style-cssvalues.html

Issue 689323002: Remove tests which are only testing getPropertyCSSValue, etc. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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/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>

Powered by Google App Engine
This is Rietveld 408576698