5 transition-timing-function: cubic-bezier(
0,
0, calc(
0.5), calc(
1.0));
10 <p>This tests that calc() values in cubic-bezier functions are read correctly.
</p>
14 if (window
.testRunner
)
15 testRunner
.dumpAsText();
17 var body
= document
.getElementsByTagName("body")[0];
18 if (window
.getComputedStyle(body
)["transitionTimingFunction"] == "cubic-bezier(0, 0, 0.5, 1)")
19 document
.getElementById("result").innerText
= "PASS";
21 document
.getElementById("result").innerText
= "FAIL";