mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
Tests/LibWeb: Import some CSSOM WPT tests
This commit is contained in:
committed by
Andreas Kling
parent
13b7c26e9f
commit
d0646236ca
Notes:
github-actions[bot]
2024-11-13 10:08:08 +00:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/LadybirdBrowser/ladybird/commit/d0646236ca6 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2305
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CSSOM View - 6.1 - getBoundingClientRect tests</title>
|
||||
<meta charset="utf-8">
|
||||
<link rel="author" title="Chris Wu" href="mailto:pwx.frontend@gmail.com">
|
||||
<link rel="help" href="http://www.w3.org/TR/cssom-view/#dom-element-getboundingclientrect">
|
||||
<meta name="flags" content="dom">
|
||||
<script src="../../resources/testharness.js"></script>
|
||||
<script src="../../resources/testharnessreport.js"></script>
|
||||
<style type="text/css">
|
||||
#testItem {
|
||||
width: 279px;
|
||||
height: 188px;
|
||||
margin: 100px 0 0 178px;
|
||||
background-color: purple;
|
||||
font-size: 26px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
line-height: 188px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="testItem">test item</div>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
var titem = document.getElementById('testItem').getBoundingClientRect();
|
||||
test(
|
||||
function(){
|
||||
assert_equals(titem.bottom - titem.top, titem.height, "height should equal bottom minus top")
|
||||
}, "getBoundingClientRect() should return a DOMRect where height=bottom-top"
|
||||
);
|
||||
test(
|
||||
function(){
|
||||
assert_equals(titem.right - titem.left, titem.width, "width should equal right minus left")
|
||||
}, "getBoundingClientRect() should return a DOMRect where width=right-left"
|
||||
)
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user