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

Side by Side Diff: LayoutTests/compositing/backface-visibility/backface-visibility-non3d.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 div { 5 div {
6 height: 100px; 6 height: 100px;
7 width: 100px; 7 width: 100px;
8 } 8 }
9 9
10 #testCase1 { 10 #testCase1 {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 <!-- Only the green div should be visible. --> 68 <!-- Only the green div should be visible. -->
69 <div id="testCase4" style="background-color: green"> 69 <div id="testCase4" style="background-color: green">
70 <div style="background-color: blue; -webkit-backface-visibility: hidden; -webk it-transform: rotateY(100deg)"> 70 <div style="background-color: blue; -webkit-backface-visibility: hidden; -webk it-transform: rotateY(100deg)">
71 <div style="background-color: lime; -webkit-backface-visibility: hidden; -we bkit-transform: rotateX(100deg)"> 71 <div style="background-color: lime; -webkit-backface-visibility: hidden; -we bkit-transform: rotateX(100deg)">
72 </div> 72 </div>
73 </div> 73 </div>
74 </div> 74 </div>
75 75
76 <script> 76 <script>
77 if (window.testRunner) { 77 if (window.testRunner) {
78 testRunner.dumpAsText(true); // This is only useful as a pixel test. 78 testRunner.dumpAsTextWithPixelResults(); // This is only useful as a pixe l test.
79 document.write("<span style='position:absolute; top:-5000px'>This test is only useful as a pixel test</span>"); 79 document.write("<span style='position:absolute; top:-5000px'>This test is only useful as a pixel test</span>");
80 } 80 }
81 </script> 81 </script>
82 </body> 82 </body>
83 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698