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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html

Issue 1713513002: Rename -webkit-text to -internal-quirk-inherit, limiting it to UA style (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase; add new (negative) test Created 4 years, 10 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/fast/css/webkit-text-display-none.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html b/third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html
deleted file mode 100644
index 3b2314665dc888a0a60deba40fd4700776b7411b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body style="display:none">
-<script type="text/javascript">
-description("This test checks that setting display to none on the body element does not change -webkit-text.");
-
-document.body.style.color = "green";
-
-var d = document.createElement("div");
-d.style.color = "-webkit-text";
-document.documentElement.appendChild(d);
-
-shouldBe("getComputedStyle(d).getPropertyValue('color')", "'rgb(0, 128, 0)'");
-document.body.style.display = "block";
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698