gecko-dev/layout/reftests/css-mediaqueries/mq_prefers_reduced_motion_r...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 строки
250 B
HTML
Исходник Обычный вид История

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