Update CSS tests to revision c68e4df16362489debde94340cc6f54945a72f2f

This commit is contained in:
Ms2ger 2015-11-17 10:00:53 +01:00
parent 32efe41299
commit 53608a60a4
1543 changed files with 42190 additions and 14617 deletions

View file

@ -3,12 +3,21 @@
<title>CSSOM View - 6.1 - getBoundingClientRect tests</title>
<meta charset="utf-8">
<link href="mailto:pwx.frontend@gmail.com" rel="author" title="Chris Wu">
<link href="http://www.w3.org/TR/cssom-view/#dom-element-getboundingclientrect" rel="help">
<link href="http://www.w3.org/TR/cssom-view/#dom-element-getboundingclientrect" rel="help">
<meta content="dom" name="flags">
<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;}
#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>
@ -18,14 +27,15 @@
var titem = document.getElementById('testItem').getBoundingClientRect();
test(
function(){
assert_equals(titem.bottom - titem.top,titem.height,"They donot match")
},"check getBoundingClientRect().top,getBoundingClientRect.bottom()"
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,"They donot match")
},"check getBoundingClientRect().left,getBoundingClientRect.right()"
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>