1
0
Fork 0
firefox/dom/bindings/test/test_reflected_attribute_frozenarray.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
620 B
HTML

<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<!DOCTYPE HTML>
<html>
<head>
<title>Test for bug 1773732</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="file_reflected_attribute_frozenarray.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<script>
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({ set: [["dom.expose_test_interfaces", true]] }, () => {
testReflectedAttributeWithFrozenArray(window)
SimpleTest.finish();
});
</script>
</body>
</html>