summaryrefslogtreecommitdiffstats
path: root/dom/performance/tests/test_performance_observer.html
blob: d368783155ae70bc60ebe90fe4ee49c0dd657385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<meta charset=utf-8>
<title>Test for performance observer</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
'use strict';
SpecialPowers.pushPrefEnv({"set": [["dom.enable_performance_observer", true]]},
                          function() {
                            window.open("performance_observer.html");
                          });
</script>