mirror of
https://github.com/servo/servo.git
synced 2025-06-13 10:54:29 +00:00
17 lines
347 B
HTML
17 lines
347 B
HTML
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
<script>
|
|
var rect = window.document.head.getBoundingClientRect();
|
|
var rects = window.document.head.getClientRects();
|
|
is_a(rect, DOMRect);
|
|
is(rect.top, 0);
|
|
is(rect.bottom, 0);
|
|
is(rect.left, 0);
|
|
is(rect.right, 0);
|
|
is(rect.width, 0);
|
|
is(rect.height, 0);
|
|
is(rects.length, 0);
|
|
</script>
|
|
</head>
|
|
</html>
|