diff options
Diffstat (limited to 'chrome/test/data/viewsource')
-rw-r--r-- | chrome/test/data/viewsource/test.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/test/data/viewsource/test.html b/chrome/test/data/viewsource/test.html index f27bf2f..a24361c 100644 --- a/chrome/test/data/viewsource/test.html +++ b/chrome/test/data/viewsource/test.html @@ -1,11 +1,11 @@ <html> <head> <script> -function setCookie() { - document.cookie = 'viewsource_cookie=foo'; + function setTitle() { + document.title = 'foo'; } </script> </head> -<body onload="setCookie();"> +<body onload="setTitle();"> </body> </html> |