summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authoryurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-21 13:01:28 +0000
committeryurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-21 13:01:28 +0000
commitc8690525bf16a641d0a81a2b9a009944993151ba (patch)
treee744039d4435e1417b8160ce4cc99661f3576e64 /chrome/test
parentdf7d54aa290fff24a02b86e88090d7af3a229d71 (diff)
downloadchromium_src-c8690525bf16a641d0a81a2b9a009944993151ba.zip
chromium_src-c8690525bf16a641d0a81a2b9a009944993151ba.tar.gz
chromium_src-c8690525bf16a641d0a81a2b9a009944993151ba.tar.bz2
DevTools: fix and enable TestContentScriptIsPresent
Review URL: http://codereview.chromium.org/314001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29635 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/data/devtools/page_with_content_script.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/chrome/test/data/devtools/page_with_content_script.html b/chrome/test/data/devtools/page_with_content_script.html
new file mode 100644
index 0000000..226316f
--- /dev/null
+++ b/chrome/test/data/devtools/page_with_content_script.html
@@ -0,0 +1,12 @@
+<html>
+<head>
+<script>
+
+function handleClick() {
+}
+</script>
+</head>
+<body>
+<input id='btn' type='button' onclick='handleClick()' value='Test'/>
+</body>
+</html> \ No newline at end of file