Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-transforms/transform_translate_invalid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms API Test: transform translate with invalid translation value</title>
<meta name="flags" content="dom">
<meta name="assert" content="Check if transform sets translate(null, null),
transform property returns initial value.">
<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(null, null)";
var value = window.getComputedStyle(document.getElementById("test")).getPropertyValue("transform");
assert_equals(value, "none", "transform property value should be none");
}, "transform_translate_null_null");
</script>
</body>
</html>