Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms API Test: transform translate</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<meta name="flags" content="dom">
<meta name="assert" content="Check if transform supports translate(100px, 100px)">
<script type="text/javascript" src="/resources/testharness.js"></script>
<script type="text/javascript" src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="test"></div>
<div id="log"></div>
<script type="text/javascript">
test(function() {
document.getElementById("test").style.transform = "translate(100px, 100px)";
var value = window.getComputedStyle(document.getElementById("test")).getPropertyValue("transform");
assert_equals(value, "matrix(1, 0, 0, 1, 100, 100)")
}, "transform_translate_100px_100px");
</script>
</body>
</html>