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

Side by Side Diff: chrome_frame/test/data/persistent_cookie_test_final_page.html

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 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 <head>
3 <meta http-equiv="x-ua-compatible" content="chrome=1" />
4 <title>Persistent host browser chrome frame cookie test final page</title>
5 <script type="text/javascript"
6 src="chrome_frame_tester_helpers.js"></script>
7
8 <script type="text/javascript">
9 function validatePersistentCookie() {
10 if (!isRunningInChrome()) {
11 onFailure("PersistentCookieTest", 1, "Not running in Chrome");
12 } else {
13 if (readCookie("PersistentCookie1") != "Cookie1" ||
14 readCookie("PersistentCookie2") != "Cookie2") {
15 onFailure("PersistentCookieTest", 1, "Failed");
16 } else {
17 onSuccess("PersistentCookieTest", 1);
18 }
19 }
20 eraseCookie("PersistentCookie1");
21 eraseCookie("PersistentCookie2");
22 }
23 </script>
24 </head>
25 <body onLoad="validatePersistentCookie();">
26 <h2>Persistent cookie validation page.!</h2>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « chrome_frame/test/data/open_href_target_no_referrer.html ('k') | chrome_frame/test/data/persistent_cookie_test_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698