test_reflected_attribute_frozenarray.html (620B)
1 <!-- Any copyright is dedicated to the Public Domain. 2 - http://creativecommons.org/publicdomain/zero/1.0/ --> 3 <!DOCTYPE HTML> 4 <html> 5 <head> 6 <title>Test for bug 1773732</title> 7 <script src="/tests/SimpleTest/SimpleTest.js"></script> 8 <script src="file_reflected_attribute_frozenarray.js"></script> 9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> 10 </head> 11 <body> 12 <script> 13 14 SimpleTest.waitForExplicitFinish(); 15 16 SpecialPowers.pushPrefEnv({ set: [["dom.expose_test_interfaces", true]] }, () => { 17 testReflectedAttributeWithFrozenArray(window) 18 19 SimpleTest.finish(); 20 }); 21 22 </script> 23 </body> 24 </html>