summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/viewsource
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-10 17:00:26 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-10 17:00:26 +0000
commitb69ffcfa3ae6aa0891e023adc94b8742bfaba7c3 (patch)
tree08d81685700d741e66e4d6d358df4c403995355b /chrome/test/data/viewsource
parent2b1ac888f214f73b2d2b9a7da44c61ccb629a2d8 (diff)
downloadchromium_src-b69ffcfa3ae6aa0891e023adc94b8742bfaba7c3.zip
chromium_src-b69ffcfa3ae6aa0891e023adc94b8742bfaba7c3.tar.gz
chromium_src-b69ffcfa3ae6aa0891e023adc94b8742bfaba7c3.tar.bz2
Convert view source ui_tests to browser_tests. I also renabled them, hopefully they're less flaky now.
I also deleted sanity_uitest.cc instead of converting it (which would be trivial) because it's a useless test at this point. Most of the browser tests navigate to a page. As for column layouts, all that stuff is tested through layout tests. BUG=121574,72201,69249 Review URL: https://chromiumcodereview.appspot.com/9999011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131564 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data/viewsource')
-rw-r--r--chrome/test/data/viewsource/test.html6
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>