/** Test for serialization and equivalence of time units **/
/**
* We test that for each of the following:
* + they reserialize to exactly what is given
* + if a mapping is provided, they compute to the same result as the mapping
*/ var tests = { "3s": "3000ms", "500ms": "0.5s"
};
var p = document.getElementById("display");
for (var test in tests) {
p.setAttribute("style", "transition-duration: " + test);
is(p.style.getPropertyValue("transition-duration"), test,
test + " serializes to exactly itself"); var equiv = tests[test];
if (equiv) { var cm1 = getComputedStyle(p, "").transitionDuration;
p.style.transitionDuration = equiv; var cm2 = getComputedStyle(p, "").transitionDuration;
is(cm1, cm2, test + " should compute to the same as " + equiv);
}
}
</script>
</pre>
</body>
</html>
Messung V0.5
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.