gecko-dev/layout/reftests/css-mediaqueries/mq_prefers_reduced_motion.html

17 строки
234 B
HTML

<!doctype html>
<meta charset="utf-8">
<html>
<title>prefers-reduced-motion</title>
<style>
div {
width: 100px;
height: 100px;
}
@media (prefers-reduced-motion) {
div { background-color: green; }
}
</style>
<div></div>
</html>