Bug 1660051 [wpt PR 25111] - Origin isolation: expand getter test coverage, a=testonly
[gecko.git] / dom / base / crashtests / 529670.html
blob52e66ab8c2991195d4dc24c7d6f1813dd09ce7dd
1 <!DOCTYPE HTML>
2 <html><head>
3 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
4 <title>Testcase for bug 529670</title>
5 <script>
6 function boom() {
7 document.createRange().getClientRects()
8 document.createRange().getBoundingClientRect()
10 var range = document.createRange();
11 range.detach();
12 range.getClientRects()
13 range.getBoundingClientRect()
15 </script>
16 </head>
17 <body onload="boom()"></body>
18 </html>