1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/webconsole/test/test-bug-621644-jsterm-dollar.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,23 @@ 1.4 +<!DOCTYPE html> 1.5 +<html dir="ltr" xml:lang="en-US" lang="en-US"> 1.6 + <head> 1.7 + <meta charset="utf-8"> 1.8 + <title>Web Console test for bug 621644</title> 1.9 + <script> 1.10 + function $(elem) { 1.11 + return elem.innerHTML; 1.12 + } 1.13 + function $$(doc) { 1.14 + return doc.title; 1.15 + } 1.16 + </script> 1.17 + <!-- 1.18 + - Any copyright is dedicated to the Public Domain. 1.19 + - http://creativecommons.org/publicdomain/zero/1.0/ 1.20 + --> 1.21 + </head> 1.22 + <body> 1.23 + <h1>Web Console test for bug 621644</h1> 1.24 + <p>hello world!</p> 1.25 + </body> 1.26 +</html>