blob: 0c6059c6dbcfd20955421d8f65651fa27ff8af9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!-- Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ -->
<!DOCTYPE html>
<head>
<meta charset="utf-8"/>
<title>Debugger Breakpoints Other Tabs Test Page</title>
</head>
<script>
function theTest() {
window.foo = "break on me";
}
theTest();
</script>
|