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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-child-expected.html

Issue 2065593002: Unprefix the CSS 'filter' property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove disabler. Try different DCHECK expressions. Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="0" height="0"> 1 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="0" height="0">
2 <defs> 2 <defs>
3 <filter id="filter" x="25%" y="0%" width="50%" height="100%"> 3 <filter id="filter" x="25%" y="0%" width="50%" height="100%">
4 <feComponentTransfer> 4 <feComponentTransfer>
5 <feFuncR type="linear" intercept="0" slope="1"/> 5 <feFuncR type="linear" intercept="0" slope="1"/>
6 <feFuncG type="linear" intercept="0" slope="0"/> 6 <feFuncG type="linear" intercept="0" slope="0"/>
7 <feFuncB type="linear" intercept="0" slope="0"/> 7 <feFuncB type="linear" intercept="0" slope="0"/>
8 <feFuncA type="linear" intercept="0" slope="1"/> 8 <feFuncA type="linear" intercept="0" slope="1"/>
9 </feComponentTransfer> 9 </feComponentTransfer>
10 </filter> 10 </filter>
11 </defs> 11 </defs>
12 </svg> 12 </svg>
13 <style> 13 <style>
14 div { 14 div {
15 display: inline-block; 15 display: inline-block;
16 filter: url(#filter); 16 filter: url(#filter);
17 -webkit-filter: url(#filter);
18 background-color: gray; 17 background-color: gray;
19 width: 50px; 18 width: 50px;
20 height: 50px; 19 height: 50px;
21 transform: translate(25px, 25px) scale(2); 20 transform: translate(25px, 25px) scale(2);
22 -webkit-transform: translate(25px, 25px) scale(2); 21 -webkit-transform: translate(25px, 25px) scale(2);
23 } 22 }
24 </style> 23 </style>
25 <div></div> 24 <div></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698