diff options
Diffstat (limited to 'devtools/client/webconsole/test/browser/test-console-evaluation-context-selector.html')
-rw-r--r-- | devtools/client/webconsole/test/browser/test-console-evaluation-context-selector.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/devtools/client/webconsole/test/browser/test-console-evaluation-context-selector.html b/devtools/client/webconsole/test/browser/test-console-evaluation-context-selector.html new file mode 100644 index 0000000000..5521648618 --- /dev/null +++ b/devtools/client/webconsole/test/browser/test-console-evaluation-context-selector.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Test evaluation context selector</title> + </head> + <body> + <h1 id="top-level">Test evaluation context selector</h1> + <script> + "use strict"; + console.log("top-level", document); + </script> + </body> +</html> |