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

Side by Side Diff: LayoutTests/fast/forms/date/date-appearance-pseudo-elements.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 <html> 1 <html>
2 <head> 2 <head>
3 <style type="text/css"> 3 <style type="text/css">
4 .after:after { content: "[after]"; } 4 .after:after { content: "[after]"; }
5 .before:before { content: "[before]"; } 5 .before:before { content: "[before]"; }
6 .first-letter:first-letter { color: green; font-size: 200%; } 6 .first-letter:first-letter { color: green; font-size: 200%; }
7 </style> 7 </style>
8 </head> 8 </head>
9 <body> 9 <body>
10 <ul> 10 <ul>
11 <li><input type="date" value="1234-05-07" class="after"></li> 11 <li><input type="date" value="1234-05-07" class="after"></li>
12 <li><input type="date" value="1234-05-07" class="before"></li> 12 <li><input type="date" value="1234-05-07" class="before"></li>
13 <li><input type="date" value="1234-05-07" class="first-letter"></li> 13 <li><input type="date" value="1234-05-07" class="first-letter"></li>
14 </ul> 14 </ul>
15 <script> 15 <script>
16 if (window.testRunner) 16 if (window.testRunner)
17 testRunner.dumpAsText(true); 17 testRunner.dumpAsTextWithPixelResults();
18 </script> 18 </script>
19 </body> 19 </body>
20 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698