diff options
Diffstat (limited to 'chrome/test/data/devtools/eval_test_page.html')
-rw-r--r-- | chrome/test/data/devtools/eval_test_page.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chrome/test/data/devtools/eval_test_page.html b/chrome/test/data/devtools/eval_test_page.html new file mode 100644 index 0000000..a9b5cee --- /dev/null +++ b/chrome/test/data/devtools/eval_test_page.html @@ -0,0 +1,20 @@ +<html> +<head> +<script type="text/javascript"> + +window.foo = 'fooValue'; +window.fooBar = { + foo : 'foo', + bar : 'bar' +}; + +function bar() { + function nestedBar() { + } +} + +</script> +</head> +<body> +</body> +</html> |