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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/navigator-cookieEnabled-no-crash.html

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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
(Empty)
1 <html>
2 <script>
3 if (window.layoutTestController) {
4 window.layoutTestController.dumpAsText();
5 window.layoutTestController.waitUntilDone();
6 }
7
8 function run_test() {
9 var nav = window.navigator;
10 document.getElementsByTagName("form")[0].submit();
11 nav.cookieEnabled;
12 window.layoutTestController.notifyDone();
13 }
14 </script>
15 <body onload="run_test()">
16 <form action="about:blank" method="GET"></form>
17 This test navigator.cookieEnabled does not crash the browser after
18 the frame navigates away from the original page. <br>
19
20 You should not see this page if the test passes.<br>
21 <div>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698