diff options
author | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-26 23:55:29 +0000 |
---|---|---|
committer | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-26 23:55:29 +0000 |
commit | 09911bf300f1a419907a9412154760efd0b7abc3 (patch) | |
tree | f131325fb4e2ad12c6d3504ab75b16dd92facfed /chrome/test/data/inspector | |
parent | 586acc5fe142f498261f52c66862fa417c3d52d2 (diff) | |
download | chromium_src-09911bf300f1a419907a9412154760efd0b7abc3.zip chromium_src-09911bf300f1a419907a9412154760efd0b7abc3.tar.gz chromium_src-09911bf300f1a419907a9412154760efd0b7abc3.tar.bz2 |
Add chrome to the repository.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data/inspector')
-rw-r--r-- | chrome/test/data/inspector/dummy.js | 3 | ||||
-rw-r--r-- | chrome/test/data/inspector/test1.html | 4 | ||||
-rw-r--r-- | chrome/test/data/inspector/test2.html | 5 |
3 files changed, 12 insertions, 0 deletions
diff --git a/chrome/test/data/inspector/dummy.js b/chrome/test/data/inspector/dummy.js new file mode 100644 index 0000000..f84383e --- /dev/null +++ b/chrome/test/data/inspector/dummy.js @@ -0,0 +1,3 @@ +function setCookie() { + document.cookie = 'viewsource_cookie=foo'; +} diff --git a/chrome/test/data/inspector/test1.html b/chrome/test/data/inspector/test1.html new file mode 100644 index 0000000..a9cf12d --- /dev/null +++ b/chrome/test/data/inspector/test1.html @@ -0,0 +1,4 @@ +<html> +<body></body> +This file exists to test that one resource get loaded in Chrome inspector. +</html>
\ No newline at end of file diff --git a/chrome/test/data/inspector/test2.html b/chrome/test/data/inspector/test2.html new file mode 100644 index 0000000..21de21b --- /dev/null +++ b/chrome/test/data/inspector/test2.html @@ -0,0 +1,5 @@ +<html> +<head><script src="dummy.js"></script></head> +<body onload="setCookie();"></body> +This file exists to test that two resources get loaded in Chrome inspector. +</html>
\ No newline at end of file |