| OLD | NEW |
| 1 <?php | 1 <?php |
| 2 if (!$_COOKIE["cookieName"]) | 2 if (!$_COOKIE["cookieName"]) |
| 3 setcookie("cookieName", "cookieValue"); | 3 setcookie("cookieName", "cookieValue"); |
| 4 ?> | 4 ?> |
| 5 <html> | 5 <html> |
| 6 <head> | 6 <head> |
| 7 <script src="inspector-test.js"></script> | 7 <script src="inspector-test.js"></script> |
| 8 <script> | 8 <script> |
| 9 | 9 |
| 10 function test() | 10 function test() |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 } | 42 } |
| 43 } | 43 } |
| 44 | 44 |
| 45 </script> | 45 </script> |
| 46 </head> | 46 </head> |
| 47 <body onload="runTest()"> | 47 <body onload="runTest()"> |
| 48 <p>This tests that the cookie set by main resource is shown in resources pan
el.</p> | 48 <p>This tests that the cookie set by main resource is shown in resources pan
el.</p> |
| 49 <a href="https://bugs.webkit.org/show_bug.cgi?id=65770">bug 65770</a>. | 49 <a href="https://bugs.webkit.org/show_bug.cgi?id=65770">bug 65770</a>. |
| 50 </body> | 50 </body> |
| 51 </html> | 51 </html> |
| OLD | NEW |