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

Unified Diff: third_party/WebKit/LayoutTests/fast/backgrounds/composite-highlight-is-invalid.html

Issue 1734863003: Remove webkit-background-composite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/backgrounds/composite-highlight-is-invalid.html
diff --git a/third_party/WebKit/LayoutTests/fast/backgrounds/composite-highlight-is-invalid.html b/third_party/WebKit/LayoutTests/fast/backgrounds/composite-highlight-is-invalid.html
deleted file mode 100644
index 7c07bf0b22bdc45e9acc4d944ce6e87e6caeff8f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/backgrounds/composite-highlight-is-invalid.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<style>
-#test1 { -webkit-background-composite: highlight; }
-#test2 { -webkit-background-composite: invalid; }
-</style>
-Tests that highlight is treated the same as an invalid value for a composite operation:<br>
-<div id="result"></div>
-<span id="test1"></span>
-<span id="test2"></span>
-<script>
-value1 = window.getComputedStyle(document.getElementById('test1')).webkitBackgroundComposite;
-value2 = window.getComputedStyle(document.getElementById('test2')).webkitBackgroundComposite;
-result.innerText = value1 === value2 ? "PASS" : "FAIL";
-if (window.testRunner)
- testRunner.dumpAsText();
-</script>

Powered by Google App Engine
This is Rietveld 408576698