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

Unified Diff: third_party/WebKit/LayoutTests/css3/calc/reflection-computed-style.html

Issue 2746583003: Send deprecation messages for prefixed gradients now that it's possible. (Closed)
Patch Set: recommit Created 3 years, 8 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/css3/calc/reflection-computed-style.html
diff --git a/third_party/WebKit/LayoutTests/css3/calc/reflection-computed-style.html b/third_party/WebKit/LayoutTests/css3/calc/reflection-computed-style.html
index f8a6271f55ae6092406662411dcd7d2b26052aca..d2ccecf2252042c23656bb16020ca93639b65834 100644
--- a/third_party/WebKit/LayoutTests/css3/calc/reflection-computed-style.html
+++ b/third_party/WebKit/LayoutTests/css3/calc/reflection-computed-style.html
@@ -2,7 +2,7 @@
<style>
div { width: 0px; height: 0px }
#reflectionOffset { -webkit-box-reflect: right calc(50%) }
- #reflectionMask { -webkit-box-reflect: below calc(5px) -webkit-gradient(linear, 0 0, 0 0) 25 25 25 25 stretch stretch; }
+ #reflectionMask { -webkit-box-reflect: below calc(5px) linear-gradient(white, black) 25 25 25 25 stretch stretch; }
</style>
<body>
<p>Test calling getPropertyValue on computed styles for -webkit-border-image property.</p>
@@ -35,6 +35,6 @@
testRunner.dumpAsText();
test('reflectionOffset', 'right calc(50%)');
log('');
- test('reflectionMask', 'below calc(5px) -webkit-gradient(linear, 0 0, 0 0) 25 25 25 25 stretch stretch');
+ test('reflectionMask', 'below calc(5px) linear-gradient(white, black) 25 25 25 25 stretch stretch');
</script>

Powered by Google App Engine
This is Rietveld 408576698