Update CSS tests to revision d13905941293af83ea8c3c1750dba652e0423fb0

This commit is contained in:
Ms2ger 2015-10-31 14:35:08 +01:00
parent b492a3e8b1
commit 5450053b02
842 changed files with 42936 additions and 27 deletions

View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html><head>
<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">
<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;}
</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,"They donot match")
},"check getBoundingClientRect().top,getBoundingClientRect.bottom()"
);
test(
function(){
assert_equals(titem.right - titem.left,titem.width,"They donot match")
},"check getBoundingClientRect().left,getBoundingClientRect.right()"
)
</script>
</body></html>