Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/tests/mochitest.toml
<!doctype html>
<!--
-->
<script src=/tests/SimpleTest/SimpleTest.js></script>
<link rel=stylesheet href=/tests/SimpleTest/test.css>
<body style=margin:0>
<div style="transform: perspective(200px)">
<div style="transform: translatez(-100px);
width:100px;height:100px;background:blue">
</div></div>
<pre id=test>
<script class=testbody>
var rect = document.querySelector("div>div").getBoundingClientRect();
is(rect.top, 0, "Incorrect bounding rect top");
is(rect.right, 100, "Incorrect bounding rect top");
is(rect.bottom, 100, "Incorrect bounding rect top");
is(rect.left, 0, "Incorrect bounding rect top");
</script>
</pre>