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-important.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms: !important flag parsing</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="target" style="transform: translateX(10px) !important; will-change: transform !important">Some text.</div>
</body>
<script>
test(() => {
assert_equals(target.style.transform, 'translateX(10px)');
assert_equals(target.style.willChange, 'transform');
});
</script>
</html>