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

Unified Diff: third_party/WebKit/LayoutTests/fast/reflections/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/fast/reflections/reflection-computed-style.html
diff --git a/third_party/WebKit/LayoutTests/fast/reflections/reflection-computed-style.html b/third_party/WebKit/LayoutTests/fast/reflections/reflection-computed-style.html
index efaa18bbc811f45a00492eb44039930f9c39372c..1a52ed065c2c56f6c26517733d8fbb585ab5858d 100644
--- a/third_party/WebKit/LayoutTests/fast/reflections/reflection-computed-style.html
+++ b/third_party/WebKit/LayoutTests/fast/reflections/reflection-computed-style.html
@@ -6,7 +6,7 @@
#reflectionNone { -webkit-box-reflect: none }
#reflectionDirection { -webkit-box-reflect: below }
#reflectionOffset { -webkit-box-reflect: right 50% }
- #reflectionMask { -webkit-box-reflect: below 5px -webkit-gradient(linear, 0 0, 0 0) 25 25 25 25 stretch stretch; }
+ #reflectionMask { -webkit-box-reflect: below 5px linear-gradient(white, black) 25 25 25 25 stretch stretch; }
</style>
<script type="text/javascript">
function log(msg)
@@ -37,7 +37,7 @@
log('');
test('reflectionOffset', 'right 50%');
log('');
- test('reflectionMask', 'below 5px -webkit-gradient(linear, 0 0, 0 0) 25 25 25 25 stretch stretch');
+ test('reflectionMask', 'below 5px linear-gradient(white, black) 25 25 25 25 stretch stretch');
}
</script>
</head>

Powered by Google App Engine
This is Rietveld 408576698