mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
439 B
HTML
19 lines
439 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html><head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||
|
<title>Testcase for bug 529670</title>
|
||
|
<script>
|
||
|
function boom() {
|
||
|
document.createRange().getClientRects()
|
||
|
document.createRange().getBoundingClientRect()
|
||
|
|
||
|
var range = document.createRange();
|
||
|
range.detach();
|
||
|
range.getClientRects()
|
||
|
range.getBoundingClientRect()
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="boom()"></body>
|
||
|
</html>
|