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

Side by Side Diff: LayoutTests/compositing/backface-visibility/backface-visibility-3d.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .large { 5 .large {
6 width: 100px; 6 width: 100px;
7 height: 100px; 7 height: 100px;
8 } 8 }
9 9
10 .medium { 10 .medium {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 lime div flattens to the rendering context, so the lime div should remain v isible. --> 97 lime div flattens to the rendering context, so the lime div should remain v isible. -->
98 <div id="testCase4" class="large green"> 98 <div id="testCase4" class="large green">
99 <div class="medium blue" style="-webkit-backface-visibility: hidden; -webkit-t ransform: rotateY(180deg); -webkit-transform-style: preserve-3d"> 99 <div class="medium blue" style="-webkit-backface-visibility: hidden; -webkit-t ransform: rotateY(180deg); -webkit-transform-style: preserve-3d">
100 <div class="small lime" style="-webkit-backface-visibility: hidden; -webkit- transform: rotateX(180deg)"> 100 <div class="small lime" style="-webkit-backface-visibility: hidden; -webkit- transform: rotateX(180deg)">
101 </div> 101 </div>
102 </div> 102 </div>
103 </div> 103 </div>
104 104
105 <script> 105 <script>
106 if (window.testRunner) { 106 if (window.testRunner) {
107 testRunner.dumpAsText(true); // This is only useful as a pixel test. 107 testRunner.dumpAsTextWithPixelResults(); // This is only useful as a pixe l test.
108 document.write("<span style='position:absolute; top:-5000px'>This test is only useful as a pixel test</span>"); 108 document.write("<span style='position:absolute; top:-5000px'>This test is only useful as a pixel test</span>");
109 } 109 }
110 </script> 110 </script>
111 </body> 111 </body>
112 </html> 112 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698