summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/test-console-filter-by-regex-input.html
blob: 3ddccc0f61186314a75a78c413e6f9b4dbc8184e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Web Console test regex input.</title>
  </head>
  <body>
    <p>Web Console test for filtering messages by regex input.</p>
    <script>
      "use strict";

      console.log("123-456-7890");
      console.log("foo@bar.com");
      console.log("http://abc.com/q?fizz=buzz&alpha=beta/");
      console.log("https://xyz.com/?path=/world");
      console.log("FOOoobaaaar");
      console.log("123 working");
    </script>
  </body>
</html>