summaryrefslogtreecommitdiffstats
path: root/browser/extensions/report-site-issue/test/browser/test.html
blob: ed1844f5302d45d0034003b37c160b5713e20448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<meta charset="utf-8">
<script>
    /* eslint-disable no-console */
    /* eslint-disable no-unused-expressions */
    "use strict";
    console.log(null);
    console.error("%ccolored message", "background:green; color:white");
    const obj = {
        testSymbol: Symbol("sym"),
        testobj: {},
        testnumber: 1,
        testArray: [1, {}, 2, 555],
        testUndf: undefined,
        testNull: null,
        testFunc() {},
        testString: 'string',
        prop1: 'prop1',
        prop2: 'prop2'
    };
    obj.c = obj;
    obj.prop3 = 'prop3';
    obj.prop4 = 'prop4';
    console.log(obj);
    const arr = [
        'string',
        {test: 'obj'},
        null,
        90,
        undefined,
        function() {},
        [1, {}, 2, 555]
    ];
    arr.push(arr);
    console.log(arr);
    document.access.non.existent.property.to.trigger.error;
</script>
<style>
  body {background: rgb(0, 128, 0);}
</style>