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

Side by Side Diff: LayoutTests/css3/filters/filter-with-transform.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 <style> 1 <style>
2 div { 2 div {
3 width: 200px; 3 width: 200px;
4 height: 200px; 4 height: 200px;
5 background-color: red; 5 background-color: red;
6 margin-left:40px; 6 margin-left:40px;
7 margin-top:40px; 7 margin-top:40px;
8 -webkit-transform: rotate(-30deg); 8 transform: rotate(-30deg);
9 -webkit-filter: hue-rotate(100deg); 9 -webkit-filter: hue-rotate(100deg);
10 } 10 }
11 </style> 11 </style>
12 <div> 12 <div>
13 <!-- This paragraph will have a filter applied. --> 13 <!-- This paragraph will have a filter applied. -->
14 </div> 14 </div>
15 <script> 15 <script>
16 if (window.testRunner) 16 if (window.testRunner)
17 window.testRunner.dumpAsTextWithPixelResults(); 17 window.testRunner.dumpAsTextWithPixelResults();
18 </script> 18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698