blob: a993af3d74e4b5dbdd2741f172f1b1313a630394 [file]
<!DOCTYPE html>
<html>
<style>
:root {
color: blue;
}
@media (update: none) {
:root {
color: green;
}
}
@media (update: fast) {
:root {
color: red;
}
}
@media (update: slow) {
:root {
color: red;
}
}
</style>
<p>This text should be green when printing.</p>
<script>
if (window.internals)
internals.settings.setMediaTypeOverride("print");
</script>
</html>