1 <?php 2 echo 'This tests the function of clear cookies by clicking "Clear Cookies" button from Settings -> Privacy & Security.<br>'; 3 echo 'It is for https://bugs.webkit.org/show_bug.cgi?id=84223.<br>'; 4 echo 'Please clear the cookies from Settings -> Privacy & Security by pressing "Clear Cookies" button, then refresh this page to see the result.<br>'; 5 if (isset($_COOKIE["cookieName"])) { 6 echo 'result: NOT PASS'; 7 } else { 8 echo 'result: PASS'; 9 } 10 ?> 11