diff options
Diffstat (limited to 'devtools/client/webconsole/test/test-property-provider.html')
-rw-r--r-- | devtools/client/webconsole/test/test-property-provider.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/devtools/client/webconsole/test/test-property-provider.html b/devtools/client/webconsole/test/test-property-provider.html new file mode 100644 index 0000000000..532b00f448 --- /dev/null +++ b/devtools/client/webconsole/test/test-property-provider.html @@ -0,0 +1,14 @@ +<!DOCTYPE HTML> +<html dir="ltr" xml:lang="en-US" lang="en-US"><head> + <meta charset="utf-8"> + <title>Property provider test</title> + <script> + var testObj = { + testProp: 'testValue' + }; + </script> + </head> + <body> + <h1>Heads Up Property Provider Test Page</h1> + </body> +</html> |