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

Side by Side Diff: LayoutTests/http/tests/cookies/resources/setArraycookies-result.php

Issue 216553010: Remove carriage returns from LayoutTests (04) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 <script> 3 <script>
4 function run(){ 4 function run(){
5 // Reading the Cooikes using PHP 5 // Reading the Cooikes using PHP
6 var cookie = "<?php if (isset($_COOKIE['setArraycookie'])) { 6 var cookie = "<?php if (isset($_COOKIE['setArraycookie'])) {
7 foreach ($_COOKIE['setArraycookie'] as $name => $value) { 7 foreach ($_COOKIE['setArraycookie'] as $name => $value) {
8 $name = htmlspecialchars($name); 8 $name = htmlspecialchars($name);
9 $value = htmlspecialchars($value); 9 $value = htmlspecialchars($value);
10 echo "$name : $value"; 10 echo "$name : $value";
(...skipping 14 matching lines...) Expand all
25 </script> 25 </script>
26 </head> 26 </head>
27 <body onload="run()"> 27 <body onload="run()">
28 <p>This test case to set a Array of Cookie size of 3 and check if it's been corr ectly set and in order.<br />If the Test case was successful, Then it should pri nt Passed below!! </p><br/> 28 <p>This test case to set a Array of Cookie size of 3 and check if it's been corr ectly set and in order.<br />If the Test case was successful, Then it should pri nt Passed below!! </p><br/>
29 <div id="test"> 29 <div id="test">
30 Not Working!! 30 Not Working!!
31 </div> 31 </div>
32 </body> 32 </body>
33 </html> 33 </html>
34 34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698