diff options
author | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-15 20:14:26 +0000 |
---|---|---|
committer | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-15 20:14:26 +0000 |
commit | bbb9d831a9732068333bbcd7e8aeaeafe70c2bf1 (patch) | |
tree | b9e19e3531d1c71e1674cd644bc9099445b37a6b /chrome/test/data | |
parent | 48978a678c849be8207f73cd1014db5f08c02a7d (diff) | |
download | chromium_src-bbb9d831a9732068333bbcd7e8aeaeafe70c2bf1.zip chromium_src-bbb9d831a9732068333bbcd7e8aeaeafe70c2bf1.tar.gz chromium_src-bbb9d831a9732068333bbcd7e8aeaeafe70c2bf1.tar.bz2 |
Add test data before committing tests so it can run on the try bots. Test Review: http://codereview.chromium.org/3358019
BUG=none
TEST=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59543 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data')
-rw-r--r-- | chrome/test/data/automation_proxy_snapshot/image.png | bin | 0 -> 2876 bytes | |||
-rw-r--r-- | chrome/test/data/automation_proxy_snapshot/just_image.html | 14 | ||||
-rw-r--r-- | chrome/test/data/automation_proxy_snapshot/set_size.html | 20 |
3 files changed, 34 insertions, 0 deletions
diff --git a/chrome/test/data/automation_proxy_snapshot/image.png b/chrome/test/data/automation_proxy_snapshot/image.png Binary files differnew file mode 100644 index 0000000..9e6afa5 --- /dev/null +++ b/chrome/test/data/automation_proxy_snapshot/image.png diff --git a/chrome/test/data/automation_proxy_snapshot/just_image.html b/chrome/test/data/automation_proxy_snapshot/just_image.html new file mode 100644 index 0000000..a2d8c84 --- /dev/null +++ b/chrome/test/data/automation_proxy_snapshot/just_image.html @@ -0,0 +1,14 @@ +<html> + <head> + <style> + * { + margin: 0px; + padding: 0px; + background-color: red; + } + </style> + </head> + <body> + <img src="image.png"> + </body> +</html>
\ No newline at end of file diff --git a/chrome/test/data/automation_proxy_snapshot/set_size.html b/chrome/test/data/automation_proxy_snapshot/set_size.html new file mode 100644 index 0000000..2770121 --- /dev/null +++ b/chrome/test/data/automation_proxy_snapshot/set_size.html @@ -0,0 +1,20 @@ +<html> + <head> + <script> + window.onload = function() { + var queryString = window.location.search.substring(1); + document.body.style.minWidth = queryString.split(',')[0]; + document.body.style.minHeight = queryString.split(',')[1]; + } + </script> + <style> + * { + margin: 0px; + padding: 0px; + background-color: red; + } + </style> + </head> + <body> + </body> +</html>
\ No newline at end of file |