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

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

Issue 24438004: Rename testRunner.dumpAsText(true) to testRunner.dumpAsTextWithPixelResults() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more tests Created 7 years, 3 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 | Annotate | Revision Log
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 -webkit-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.dumpAsText(true); 17 window.testRunner.dumpAsTextWithPixelResults();
18 </script> 18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698